/* ─── TOKENS ─── */
:root {
  --cream:       #F5EDE8;
  --green-dark:  #1B4332;
  --green-leaf:  #6A9E3F;
  --pink:        #D4526E;
  --beet:        #8B1A4A;
  --carrot:      #E8630A;
  --cauli:       #7A8C5A;
  --broccoli:    #2D6A3F;
  --white:       #FFFFFF;
  --text:        #1B4332;
  --muted:       #7A8070;
  --border:      rgba(27, 67, 50, 0.1);
  --shadow:      0 20px 60px rgba(27, 67, 50, 0.1);
  --radius:      20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-weight: 700; }

h1 em {
  font-style: normal;
  color: var(--green-leaf);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(245, 237, 232, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-leaf { flex-shrink: 0; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-name sup {
  font-size: 0.48em;
  vertical-align: super;
  font-weight: 700;
}

.logo-sub {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  opacity: 0.7;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links > a:not(.btn-wa) {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links > a:not(.btn-wa):hover { color: var(--green-dark); }

/* ─── BUTTONS ─── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.22);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 67, 50, 0.32);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(27, 67, 50, 0.38);
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 2.2rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
}

.btn-ig:hover { transform: translateY(-2px); }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.1);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

/* ─── SECTIONS ─── */
section { padding: 5.5rem 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255, 255, 255, 0.72); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 5rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 { margin-bottom: 1.25rem; }

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.hero-lead strong { color: var(--green-dark); }

.hero-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.hero-claims span {
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.65);
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(27, 67, 50, 0.14);
}

.hero-visual img { width: 100%; height: auto; object-fit: cover; }

/* ─── GLOW CARDS ─── */
.glow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.glow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Radial glow follows cursor via --mouse-x / --mouse-y */
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(var(--glow), 0.18) 0%,
    transparent 65%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.glow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(var(--glow), 0.14);
}

.glow-card:hover::before { opacity: 1; }

/* Image */
.glow-card-img {
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  background: var(--cream);          /* mismo color que el fondo del empaque */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem 0;
  overflow: hidden;
}

.glow-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;              /* pouch completo, sin recortes */
  object-position: center bottom;
  display: block;
  transition: transform 0.4s ease;
}

.glow-card:hover .glow-card-img img {
  transform: scale(1.06);
}

.glow-card-img--soon img { filter: saturate(0.55); }

/* Body */
.glow-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.glow-card-body h3 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glow-card-body p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.glow-badge.soon {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(108, 117, 125, 0.1);
  color: var(--muted);
  vertical-align: middle;
}

/* ─── CLAIM STRIP ─── */
.claim-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.claim-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.claim-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.claim-item svg { flex-shrink: 0; color: var(--green-leaf); }

.claim-sep {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
}

/* ─── PRODUCTS ─── */
.products { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.07);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-header {
  padding: 2rem 1.5rem 1.25rem;
  display: flex;
  justify-content: center;
}

.product-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* SKU color maps */
.product-card.beet   .product-header { background: rgba(139, 26, 74, 0.05); }
.product-card.beet   .product-circle { background: radial-gradient(circle at 38% 38%, #C4537A, #8B1A4A); }
.product-card.beet   h3              { color: var(--beet); }

.product-card.carrot .product-header { background: rgba(232, 99, 10, 0.05); }
.product-card.carrot .product-circle { background: radial-gradient(circle at 38% 38%, #F5A05A, #E8630A); }
.product-card.carrot h3              { color: var(--carrot); }

.product-card.cauli  .product-header { background: rgba(122, 140, 90, 0.05); }
.product-card.cauli  .product-circle { background: radial-gradient(circle at 38% 38%, #C5D4A0, #7A8C5A); }
.product-card.cauli  h3              { color: var(--cauli); }

.product-card.broccoli .product-header { background: rgba(45, 106, 63, 0.05); }
.product-card.broccoli .product-circle { background: radial-gradient(circle at 38% 38%, #60B882, #2D6A3F); }
.product-card.broccoli h3              { color: var(--broccoli); }

.product-body { padding: 0.25rem 1.35rem 1.5rem; }

.product-body h3 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.25rem 0 0.2rem;
}

.product-specs {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.product-body > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.sku-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sku-badge.star {
  background: rgba(139, 26, 74, 0.1);
  color: var(--beet);
}

.sku-badge.soon {
  background: rgba(108, 117, 125, 0.1);
  color: var(--muted);
}

/* ─── HOW TO USE ─── */
.how { background: var(--green-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.45);
}

.step img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── WHY ─── */
.why { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.06);
  border: 1px solid var(--border);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(27, 67, 50, 0.07);
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── INSTAGRAM BRIDGE ─── */
.ig-bridge {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.ig-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.ig-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.ig-copy h2 { margin-bottom: 0.75rem; }

.ig-copy p {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1rem;
}

.ig-visual img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

/* ─── CTA CHANNELS ─── */
.cta-channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-email:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

/* ─── CTA MAIN ─── */
.cta-main {
  background: var(--green-dark);
  text-align: center;
  padding: 6.5rem 0;
}

.cta-inner {
  max-width: 580px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin: 0 0 2.25rem;
  line-height: 1.65;
}

/* ─── FAQ ─── */
.faq { background: var(--cream); }

.faq-list {
  max-width: 700px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--green-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: block;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer-logo sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s;
}

.footer-socials a:hover { background: rgba(255, 255, 255, 0.2); }

.footer strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.footer ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ─── MOBILE NAV ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
    gap: 2.5rem;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-lead { text-align: center; max-width: 100%; }
  .hero-claims { justify-content: center; }

  .glow-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .ig-inner { grid-template-columns: 1fr; }
  .ig-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.25rem 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
    align-items: flex-start;
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.08);
  }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .claim-inner { gap: 1.25rem; }
  .claim-sep { display: none; }
  h1 { font-size: 2.6rem; }

  .glow-grid { grid-template-columns: 1fr; }
}
