/* ============================================
   LIVE WELL LATAM — Styles
   Estética: Wellness Boutique Premium
   Paleta: Verde botánico + Crema + Acentos cálidos
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colores */
  --green-900: #0d2818;
  --green-800: #14361f;
  --green-700: #1d4a2c;
  --green-600: #2a6041;
  --green-500: #3d8159;
  --green-400: #6ba37e;
  --green-300: #a8c8b3;
  --green-100: #e8f0ea;
  --green-50:  #f4f8f5;

  --cream-100: #faf6ef;
  --cream-200: #f3ecdf;
  --cream-300: #e8dcc4;

  --gold: #b89968;
  --rose: #c97b5a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --text-primary: #0d2818;
  --text-secondary: #4a5a4e;
  --text-muted: #7a8a7d;

  --white: #ffffff;
  --black: #0a1a10;

  /* Tipografía */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaciado */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(13, 40, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 40, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 40, 24, 0.12);
  --shadow-xl: 0 30px 80px rgba(13, 40, 24, 0.18);

  /* Transiciones */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- BOTONES ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--green-900);
  color: var(--cream-100);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--green-900);
}
.btn--ghost:hover {
  background: var(--green-900);
  color: var(--cream-100);
}

.btn--white {
  background: var(--cream-100);
  color: var(--green-900);
}
.btn--white:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn--pill {
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
}
.btn--pill:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 15px;
}

/* ----- HEADER ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med) var(--ease);
}
.header.scrolled {
  background: rgba(250, 246, 239, 0.95);
  border-bottom-color: rgba(13, 40, 24, 0.08);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity var(--t-fast) var(--ease);
}
.header__logo:hover .header__logo-img { opacity: 0.85; }

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--green-900);
  display: flex;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-mark--light { color: var(--cream-100); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-900);
  font-style: italic;
  letter-spacing: -0.01em;
}
.logo-text__tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--green-900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after { transform: scaleX(1); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-900);
  border-radius: 1px;
  transition: all var(--t-med) var(--ease);
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(168, 200, 179, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(232, 220, 196, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream-100) 0%, var(--green-50) 100%);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(45, 96, 65, 0.04) 0%, transparent 8%),
    radial-gradient(circle at 70% 60%, rgba(184, 153, 104, 0.05) 0%, transparent 10%),
    radial-gradient(circle at 40% 80%, rgba(45, 96, 65, 0.04) 0%, transparent 8%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(45, 96, 65, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  animation: fadeUp 800ms var(--ease) both;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--green-900);
  margin-bottom: 32px;
}
.hero__title-line {
  display: block;
  animation: fadeUp 800ms var(--ease) both;
}
.hero__title-line:nth-child(1) { animation-delay: 100ms; }
.hero__title-line:nth-child(2) { animation-delay: 250ms; }
.hero__title-line:nth-child(3) { animation-delay: 400ms; }
.hero__title-line--accent em {
  font-style: italic;
  color: var(--green-600);
  font-weight: 300;
}

.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeUp 800ms var(--ease) 550ms both;
}
.hero__lead strong { color: var(--green-800); font-weight: 600; }

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 800ms var(--ease) 700ms both;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 80px auto 0;
  padding: 32px 0;
  border-top: 1px solid rgba(13, 40, 24, 0.1);
  border-bottom: 1px solid rgba(13, 40, 24, 0.1);
  animation: fadeUp 800ms var(--ease) 850ms both;
}
.hero__strip-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__strip-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__strip-item span {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- SECTION HEAD ----- */
.section__head {
  margin-bottom: 64px;
}
.section__head--centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--green-300); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin-bottom: 16px;
}
.section__title em {
  font-style: italic;
  color: var(--green-600);
  font-weight: 300;
}
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ----- BENEFICIOS ----- */
.benefits {
  padding: 100px 0;
  background: var(--cream-100);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 40, 24, 0.06);
  transition: all var(--t-med) var(--ease);
}
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 96, 65, 0.15);
}
.benefit__icon {
  width: 48px;
  height: 48px;
  color: var(--green-600);
  margin-bottom: 20px;
}
.benefit__icon svg { width: 100%; height: 100%; }
.benefit h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.benefit p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ----- PRODUCTOS ----- */
.products {
  padding: 100px 0;
  background: var(--green-50);
  position: relative;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  border: 1px solid rgba(13, 40, 24, 0.05);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45, 96, 65, 0.2);
}

.product-card__image {
  height: 240px;
  background-color: var(--green-100);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-900);
  color: var(--cream-100);
  border-radius: var(--radius-pill);
}
.product-card__badge--gold { background: var(--gold); }
.product-card__badge--rose { background: var(--rose); }

.product-card__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 40, 24, 0.08);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: -0.01em;
  line-height: 1;
}
.product-card__price small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ----- STORY (Ganoderma) ----- */
.story {
  position: relative;
  padding: 120px 0;
  background: var(--green-900);
  color: var(--cream-100);
  overflow: hidden;
}
.story__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(107, 163, 126, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(184, 153, 104, 0.1) 0%, transparent 40%);
  z-index: 0;
}
.story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream-100);
  margin-bottom: 24px;
}
.story__title em {
  font-style: italic;
  color: var(--green-300);
  font-weight: 300;
}
.story__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.85);
  margin-bottom: 28px;
}
.story__text strong { color: var(--cream-100); font-weight: 600; }
.story__list {
  list-style: none;
  margin-bottom: 32px;
}
.story__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(250, 246, 239, 0.9);
}
.story__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-600);
  color: var(--cream-100);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.story__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-700) 0%, var(--green-800) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(168, 200, 179, 0.2);
  animation: rotate 60s linear infinite;
}
.story__circle::before, .story__circle::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(168, 200, 179, 0.15);
}
.story__circle::after { inset: -40px; opacity: 0.6; }
@keyframes rotate { to { transform: rotate(360deg); } }
.story__circle-inner {
  text-align: center;
  animation: rotate 60s linear infinite reverse;
}
.story__big {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--cream-100);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.story__small {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-300);
  line-height: 1.5;
}

/* ----- TESTIMONIOS ----- */
.testimonials {
  padding: 100px 0;
  background: var(--cream-100);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 40, 24, 0.06);
  transition: all var(--t-med) var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 40, 24, 0.06);
}
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial__footer strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 2px;
}
.testimonial__footer span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ----- HOW TO ----- */
.howto {
  padding: 100px 0;
  background: var(--green-50);
}
.howto__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* ----- FAQ ----- */
.faq {
  padding: 100px 0;
  background: var(--cream-100);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 40, 24, 0.06);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 96, 65, 0.2);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  transition: color var(--t-fast) var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-600); }
.faq__toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  color: var(--green-700);
  transition: all var(--t-med) var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__toggle {
  background: var(--green-700);
  color: var(--cream-100);
  transform: rotate(45deg);
}
.faq__body {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ----- CTA FINAL ----- */
.cta-final {
  padding: 80px 0;
  background: var(--cream-100);
}
.cta-final__inner {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 70px 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.cta-final__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 163, 126, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream-100);
  margin-bottom: 16px;
  position: relative;
}
.cta-final__text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.8);
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-final__inner .btn { position: relative; }

/* ----- FOOTER ----- */
.footer {
  background: var(--green-900);
  color: rgba(250, 246, 239, 0.7);
  padding: 70px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-100);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer__col ul { list-style: none; }
.footer__col li {
  font-size: 14px;
  line-height: 2;
}
.footer__col a {
  color: rgba(250, 246, 239, 0.7);
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--cream-100); }

.footer__logo {
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(250, 246, 239, 0.75);
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 239, 0.08);
  border-radius: 50%;
  color: var(--cream-100);
  transition: all var(--t-med) var(--ease);
}
.footer__social a:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.55);
  max-width: 900px;
}
.footer__disclaimer strong { color: rgba(250, 246, 239, 0.8); }
.footer__copy {
  font-size: 12px;
  color: rgba(250, 246, 239, 0.5);
}

/* ----- WHATSAPP FLOAT ----- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--t-med) var(--ease);
  animation: floatIn 600ms var(--ease) 1.5s both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--green-900);
  color: var(--cream-100);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.wa-float:hover .wa-float__label { opacity: 1; }
@keyframes floatIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ----- ANIMACIÓN AL HACER SCROLL ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story__inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .story__list { display: inline-block; text-align: left; }
}

/* ============================================
   RESPONSIVE — Móvil
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream-100);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--t-med) var(--ease);
    border-top: 1px solid rgba(13, 40, 24, 0.08);
  }
  .nav.active { transform: translateY(0); }
  .nav__link {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(13, 40, 24, 0.06);
  }
  .nav__link:last-child { border-bottom: 0; }
  .header__burger { display: flex; }
  .header .btn--pill { display: none; }
  .header__logo-img { height: 44px; }

  /* Hero */
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 24px 0;
  }
  .hero__strip-item strong { font-size: 24px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  /* Beneficios */
  .benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits, .testimonials, .howto, .faq { padding: 70px 0; }

  /* Productos */
  .products { padding: 70px 0; }
  .products__grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card__image { height: 220px; }

  /* Story */
  .story { padding: 70px 0; }
  .story__circle { width: 260px; height: 260px; }
  .story__big { font-size: 48px; }

  /* HowTo */
  .howto__steps { grid-template-columns: 1fr; gap: 32px; }

  /* CTA Final */
  .cta-final__inner { padding: 50px 28px; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }

  /* WhatsApp Float */
  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float__label { display: none; }

  /* Section heads */
  .section__head { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero__strip { grid-template-columns: 1fr 1fr; }
  .product-card__price { font-size: 19px; }
}