@import "tailwindcss";
@import "tw-animate-css";
@import "../vendor/shadcn-tailwind-4.13.0.css";
:root {
  --green: #0d3b2a;
  --gold: #d6a63b;
  --cream: #f5f0e4;
  --ink: #17201b;
  --wa: #20b85a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #faf9f5;
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.topbar {
  height: 78px;
  padding: 0 clamp(18px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  border: 3px solid #e1bd64;
}
.brand b,
.brand small {
  display: block;
}
.brand small {
  color: #6b756f;
  margin-top: 3px;
}
.call {
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
}
.hero {
  min-height: 570px;
  padding: 70px clamp(20px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background:
    linear-gradient(90deg, rgba(7, 34, 23, 0.94), rgba(7, 34, 23, 0.56)),
    url("without_floor_added.jpg") center/cover;
  color: #fff;
}
.hero-content {
  max-width: 650px;
}
.eyebrow {
  display: inline-block;
  background: var(--gold);
  color: #172015;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(43px, 6vw, 76px);
  line-height: 1.08;
  margin: 22px 0 18px;
}
.hero h1 em {
  font-style: normal;
  color: #f0c65f;
}
.hero p {
  font-size: 19px;
  line-height: 1.9;
  max-width: 590px;
}
.hero-button {
  display: inline-block;
  background: #fff;
  color: var(--green);
  font-weight: 900;
  padding: 16px 23px;
  border-radius: 9px;
  margin-top: 14px;
}
.hero-price {
  background: #fff;
  color: var(--green);
  min-width: 245px;
  padding: 26px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 50px #0006;
  transform: rotate(-4deg);
  border: 7px solid var(--gold);
}
.hero-price small {
  font-weight: 900;
  font-size: 18px;
}
.hero-price del {
  color: #a45a4f;
}
.hero-price strong {
  font-size: 76px;
  line-height: 1;
}
.hero-price span {
  font-weight: 900;
}
.trust {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: var(--gold);
  padding: 17px;
  font-weight: 900;
}
.offers {
  padding: 75px clamp(18px, 6vw, 90px);
}
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head > span {
  color: #176c48;
  font-weight: 900;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 10px;
}
.section-head p {
  color: #69716c;
  font-size: 17px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  max-width: 1250px;
  margin: auto;
}
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px #18302315;
  border: 1px solid #e8e6de;
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.photo-wrap {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #111;
}
.photo-wrap img,
.photo-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-wrap video {
  background: #111;
}
.code,
.sale {
  position: absolute;
  z-index: 2;
  top: 13px;
  padding: 7px 10px;
  border-radius: 7px;
  font-weight: 900;
  font-size: 13px;
}
.code {
  right: 13px;
  background: #fff;
  color: var(--green);
}
.sale {
  left: 13px;
  background: #b94031;
  color: #fff;
}
.card-body {
  padding: 20px;
}
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
.title-row h3 {
  margin: 0;
  font-size: 21px;
}
.title-row span {
  white-space: nowrap;
  background: var(--cream);
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 800;
  color: var(--green);
}
.card-body > p {
  color: #727a74;
  margin: 10px 0 16px;
}
.price-row {
  border-top: 1px solid #eceae2;
  padding-top: 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.price-row div {
  display: flex;
  gap: 9px;
  align-items: end;
}
.price-row del {
  color: #aa6a62;
}
.price-row strong {
  font-size: 29px;
  color: var(--green);
}
.price-row small {
  color: #7a817c;
}
.discount-only {
  border-top: 1px solid #eceae2;
  padding-top: 15px;
  color: #b94031;
  font-size: 24px;
  font-weight: 900;
}
.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  font-weight: 900;
  padding: 14px;
  margin-top: 17px;
  border-radius: 8px;
}
.whatsapp span {
  background: #fff;
  color: var(--wa);
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
}
.steps {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 55px 20px;
}
.steps h2 {
  font-size: 35px;
}
.steps > div {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 25px;
}
.steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
}
.steps b {
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
footer {
  text-align: center;
  background: #071f16;
  color: #fff;
  padding: 38px 20px;
}
footer b {
  font-size: 24px;
}
footer p {
  color: #b9c7bf;
}
footer a {
  font-size: 22px;
  color: #efc45c;
  font-weight: 900;
}
.floating-wa {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  background: linear-gradient(145deg, #39df72, #07983f);
  color: #fff;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 28px #087c3a88, inset 0 1px 3px #ffffff88;
  border: 4px solid #fff;
  animation: floating-action 1.9s ease-in-out infinite;
}
.floating-wa svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
.floating-wa small {
  font-size: 11px;
  line-height: 1;
  margin-top: 3px;
}
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff4747, #be0909);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px #9c000088, inset 0 1px 3px #ffffff88;
  border: 4px solid #fff;
  font-weight: 900;
  animation: floating-action 1.9s ease-in-out 0.3s infinite;
}
.phone-icon {
  font-size: 30px;
  line-height: 1;
}
.floating-call small {
  font-size: 12px;
  margin-top: 3px;
}
@keyframes floating-action {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.07);
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-wa,
  .floating-call {
    animation: none;
  }
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-price {
    display: none;
  }
  .trust {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .topbar {
    height: 68px;
    padding: 0 13px;
  }
  .brand small {
    display: none;
  }
  .brand b {
    font-size: 16px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .call {
    font-size: 12px;
    padding: 10px;
  }
  .hero {
    min-height: 500px;
    padding: 52px 19px;
    background:
      linear-gradient(0deg, rgba(5, 31, 20, 0.93), rgba(5, 31, 20, 0.42)),
      url("without_floor_added.jpg") center/cover;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 16px;
  }
  .trust {
    font-size: 12px;
    padding: 13px 8px;
  }
  .offers {
    padding: 55px 13px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .photo-wrap {
    aspect-ratio: 4 / 5;
  }
  .steps > div {
    flex-direction: column;
    align-items: flex-start;
    max-width: 220px;
    margin: 25px auto 0;
  }
  .floating-wa {
    left: 12px;
    bottom: 12px;
    width: 70px;
    height: 70px;
  }
  .floating-call {
    right: 12px;
    bottom: 12px;
    width: 70px;
    height: 70px;
  }
}
