:root {
  --green-950: #031b18;
  --green-900: #062b26;
  --green-850: #073a32;
  --green-800: #0a5147;
  --green-700: #0d675a;
  --gold-600: #b8995f;
  --gold-500: #d7bd82;
  --gold-300: #eadbb6;
  --cream: #fbf7ed;
  --cream-2: #f3ead8;
  --white: #ffffff;
  --muted: #6d756f;
  --line: rgba(7, 58, 50, 0.12);
  --shadow: 0 28px 80px rgba(3, 27, 24, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--green-950);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold-300); color: var(--green-950); }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 94px 0; position: relative; }
.section.compact { padding: 58px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-600);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, .serif {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.65rem, 5.4vw, 5.35rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.85rem, 3.5vw, 3.45rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.08rem, 1.55vw, 1.38rem); line-height: 1.18; margin-bottom: 10px; }
p { color: rgba(3, 27, 24, 0.72); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(3, 27, 24, 0.76); max-width: 720px; }
.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--green-850);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 30px rgba(7, 58, 50, 0.18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 40px rgba(7, 58, 50, 0.22); background: var(--green-700); }
.btn.gold { background: linear-gradient(135deg, var(--gold-500), #b79658); color: var(--green-950); }
.btn.light { background: rgba(255,255,255,0.94); color: var(--green-950); border-color: rgba(255,255,255,0.32); box-shadow: none; }
.btn.outline { background: transparent; color: var(--green-850); border-color: rgba(7, 58, 50, 0.24); box-shadow: none; }
.btn.outline:hover { background: var(--green-850); color: var(--white); }
.btn.block { width: 100%; }
.icon-btn { width: 18px; height: 18px; object-fit: contain; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 237, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 58, 50, 0.1);
}
.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo { width: min(230px, 48vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 750; font-size: 0.94rem; color: rgba(3, 27, 24, 0.8); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-600); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: var(--green-850); color: var(--white); border: 0; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 193, 138, 0.34), transparent 24%),
    linear-gradient(135deg, var(--cream) 0%, #f8efd9 47%, #e6d0a3 100%);
}
.hero .container { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr); gap: 44px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { margin-bottom: 28px; }
.hero-actions, .product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(7, 58, 50, 0.14);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(3, 27, 24, 0.76);
  font-weight: 750;
  font-size: .88rem;
}
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-600); }
.hero-visual { position: relative; min-height: 640px; display: grid; place-items: center; }
.hero-orb {
  position: absolute;
  width: min(570px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
}
.hero-orb::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: inherit;
  border: 1px solid rgba(216, 193, 138, .35);
}
.hero-orb::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: inherit;
  border: 1px solid rgba(7, 58, 50, .12);
}
.product-stack { position: relative; z-index: 2; width: 100%; height: 640px; }
.product-stack img { position: absolute; filter: drop-shadow(0 32px 28px rgba(1, 14, 12, .30)); border-radius: 34px; }
.product-stack .p1 { width: 53%; left: 22%; top: 20px; transform: rotate(-3deg); }
.product-stack .p2 { width: 39%; left: 3%; top: 190px; transform: rotate(7deg); }
.product-stack .p3 { width: 39%; right: 2%; top: 238px; transform: rotate(-8deg); }
.floating-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 74px;
  width: min(270px, 80vw);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.floating-card strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.floating-card p { margin: 0; font-size: .92rem; }

.logo-strip {
  padding: 26px 0;
  background: var(--green-950);
  color: rgba(255,255,255,.84);
  overflow: hidden;
}
.strip-track { display: flex; gap: 46px; white-space: nowrap; animation: marquee 24s linear infinite; width: max-content; }
.strip-track span { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
.strip-track span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(7, 58, 50, 0.1);
  box-shadow: 0 18px 55px rgba(3, 27, 24, .06);
}
.category-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(234,219,182,.38));
}
.category-card::after {
  content: "";
  position: absolute;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  right: -56px;
  bottom: -64px;
  background: radial-gradient(circle, rgba(216, 193, 138, .65), transparent 66%);
}
.category-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green-850);
  color: var(--gold-500);
  font-weight: 900;
  font-size: 1.4rem;
}
.category-card h3 { max-width: 260px; }
.category-card p { margin-bottom: 24px; }

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  background: var(--white);
}
.product-card-media {
  background: linear-gradient(145deg, #f7edda, #e2c992);
  padding: 26px;
}
.product-card-media img { border-radius: 26px; width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(10,81,71,.08); color: var(--green-850); font-weight: 800; font-size: .76rem; }
.product-card .price { font-weight: 900; color: var(--green-850); font-size: 1.15rem; margin: auto 0 18px; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-card-actions .btn { min-height: 46px; padding: 0 15px; font-size: .88rem; }

.about-panel {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  background: linear-gradient(145deg, var(--green-850), var(--green-950));
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 40px;
  box-shadow: var(--shadow);
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(216,193,138,.28);
  border-radius: 34px;
}
.about-panel img { position: relative; z-index: 1; max-width: 360px; filter: drop-shadow(0 22px 30px rgba(0,0,0,.24)); }
.about-list { display: grid; gap: 14px; margin-top: 26px; }
.about-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.about-item .number { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-500); color: var(--green-950); font-weight: 900; }
.about-item p { margin: 0; }

.cta-band {
  border-radius: 44px;
  padding: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 84% 20%, rgba(216,193,138,.36), transparent 26%),
    linear-gradient(135deg, var(--green-850), var(--green-950));
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band p { opacity: .78; }
.cta-band::after {
  content: "B";
  position: absolute;
  right: -22px;
  bottom: -120px;
  font-family: Georgia, serif;
  font-size: 22rem;
  line-height: .7;
  color: rgba(255,255,255,.045);
  font-weight: 900;
}
.cta-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }

.page-hero {
  padding: 80px 0 54px;
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 193, 138, 0.35), transparent 26%),
    linear-gradient(135deg, #fffaf0, var(--cream-2));
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: rgba(3,27,24,.58); font-weight: 750; font-size: .9rem; margin-bottom: 28px; }
.breadcrumb a { color: var(--green-850); }
.breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(3,27,24,.28); }

.product-hero {
  padding: 60px 0 80px;
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 193, 138, 0.28), transparent 22%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}
.product-layout { display: grid; grid-template-columns: minmax(0, .96fr) minmax(360px, .82fr); gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 112px; }
.main-product-image {
  border-radius: 44px;
  padding: 30px;
  background: linear-gradient(145deg, var(--green-850), var(--gold-500));
  box-shadow: var(--shadow);
}
.main-product-image img { border-radius: 32px; width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumb { border-radius: 18px; padding: 10px; background: rgba(255,255,255,.74); border: 1px solid rgba(7,58,50,.10); min-height: 92px; display: grid; place-items: center; font-weight: 900; color: var(--green-850); }
.product-info { padding-top: 12px; }
.product-title { font-size: clamp(2.4rem, 4.1vw, 4.35rem); margin-bottom: 16px; }
.rating { display: flex; gap: 8px; align-items: center; color: var(--gold-600); font-weight: 900; margin-bottom: 16px; }
.product-description { font-size: 1.08rem; color: rgba(3,27,24,.76); margin-bottom: 24px; }
.price-line { display: flex; align-items: end; gap: 12px; margin: 26px 0; }
.price-line strong { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green-850); letter-spacing: -.04em; }
.price-line span { color: rgba(3,27,24,.58); font-weight: 750; padding-bottom: 7px; }
.product-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.trust-mini { border: 1px solid rgba(7,58,50,.1); background: rgba(255,255,255,.62); border-radius: 18px; padding: 14px; font-weight: 850; font-size: .86rem; color: rgba(3,27,24,.76); }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.spec-list { display: grid; gap: 12px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(7,58,50,.11); }
.spec-row span:first-child { color: rgba(3,27,24,.62); font-weight: 750; }
.spec-row span:last-child { color: var(--green-850); font-weight: 900; text-align: right; }
.use-card { background: var(--green-850); color: var(--white); }
.use-card p { color: rgba(255,255,255,.75); }
.use-card .tag { background: rgba(255,255,255,.12); color: var(--gold-300); }

.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 36px auto 0; }
.faq-item { border: 1px solid rgba(7, 58, 50, .12); border-radius: 22px; background: rgba(255,255,255,.66); overflow: hidden; }
.faq-question { width: 100%; background: transparent; border: 0; padding: 22px 24px; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; color: var(--green-950); font-weight: 900; }
.faq-question::after { content: "+"; color: var(--gold-600); font-size: 1.5rem; line-height: 1; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 24px 22px; }
.faq-answer p { margin: 0; }
.faq-item.is-open .faq-answer { display: block; }

.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content .card { padding: clamp(24px, 5vw, 46px); }
.legal-content h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.55rem; letter-spacing: -0.02em; line-height: 1.18; margin-top: 32px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: rgba(3,27,24,.72); }

.site-footer {
  background: var(--green-950);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 34px; }
.footer-logo { width: 220px; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer h4 { color: var(--white); margin-bottom: 14px; }
.footer-links { display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.56); font-size: .92rem; }
.footer-bottom a { color: var(--gold-300); }
.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 42px rgba(3,27,24,.26);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float img { width: 38px; height: 38px; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { min-height: 76px; }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(251,247,237,.98);
    border: 1px solid rgba(7,58,50,.12);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 10px; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .hero { min-height: auto; padding: 56px 0 72px; }
  .hero .container, .grid-2, .product-layout, .cta-content, .specs-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; order: -1; }
  .product-stack { height: 520px; }
  .floating-card { right: 8px; bottom: 28px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(2.18rem, 11.5vw, 3.35rem); }
  h2 { font-size: clamp(1.7rem, 8.6vw, 2.55rem); }
  .product-title { font-size: clamp(2.05rem, 10vw, 3rem); }
  .section { padding: 70px 0; }
  .logo { width: 178px; }
  .hero-actions, .product-actions { align-items: stretch; }
  .hero-actions .btn, .product-actions .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-orb { width: 390px; }
  .product-stack { height: 430px; }
  .product-stack .p1 { width: 58%; left: 20%; top: 8px; }
  .product-stack .p2 { width: 42%; left: 0; top: 158px; }
  .product-stack .p3 { width: 42%; right: 0; top: 190px; }
  .floating-card { width: calc(100% - 34px); left: 17px; right: auto; bottom: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-card-actions { grid-template-columns: 1fr; }
  .product-trust { grid-template-columns: 1fr; }
  .price-line { display: block; }
  .price-line span { display: block; padding: 0; margin-top: 4px; }
  .cta-band { border-radius: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 60px; height: 60px; right: 16px; bottom: 16px; }
}
.site-footer .footer-logo {
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  padding: 12px;
}
