/* ======================================================
   DERULO MULTI — style.css
   Architecture: Section-scoped semantic
   Variables: --brand / --brand-alt / --highlight
   Fonts: Playfair Display + Lato
   Theme: Dark base + vivid emerald + coral CTA + pastel cards
   ====================================================== */

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

:root {
  --brand: #22C55E;
  --brand-alt: #BBF7D0;
  --highlight: #16A34A;
  --highlight-hover: #15803D;

  --bg-base: #0D1117;
  --bg-layer: #161B26;
  --bg-layer-2: #1E2535;
  --bg-layer-3: #252D3F;

  --text-1: #F1F5F9;
  --text-2: #94A3B8;
  --text-3: #64748B;
  --text-dark: #0F172A;

  --pastel-peach: #FDE8D8;
  --pastel-mint: #D1FAE5;
  --pastel-sky: #DBEAFE;
  --pastel-lavender: #EDE9FE;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-brand: rgba(34, 197, 94, 0.3);

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 40px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 60px rgba(34, 197, 94, 0.12);
  --shadow-highlight: 0 8px 32px rgba(22, 163, 74, 0.3);

  --container: 1200px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-gap: clamp(4rem, 8vw, 7rem);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--brand-alt); }

address { font-style: normal; }

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-1);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); color: var(--text-2); }

p { color: var(--text-2); margin-bottom: 0.5rem; }
p:last-child { margin-bottom: 0; }

em {
  font-style: italic;
  color: var(--brand);
}

/* ---- SECTION TAG ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-m);
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s, color 0.2s;
  line-height: 1;
  white-space: nowrap;
}

.btn--cta {
  background: var(--highlight);
  color: #fff;
  padding: 0.85rem 1.8rem;
  box-shadow: var(--shadow-highlight);
}
.btn--cta:hover {
  background: var(--highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.35);
  color: #fff;
}

.btn--hero {
  background: var(--highlight);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-highlight);
}
.btn--hero:hover {
  background: var(--highlight-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(22, 163, 74, 0.4);
  color: #fff;
}
.btn--hero strong { font-weight: 900; }

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  padding: 0.9rem 1.6rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-l);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(34, 197, 94, 0.05);
}

.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

.btn--submit {
  width: 100%;
  background: var(--highlight);
  color: #fff;
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-m);
  margin-top: 0.5rem;
  box-shadow: var(--shadow-highlight);
}
.btn--submit:hover {
  background: var(--highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22, 163, 74, 0.35);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-layer-3);
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text strong {
  display: block;
  color: var(--text-1);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.cookie-banner__text p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text a { color: var(--brand); font-size: 0.82rem; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-banner__btn--outline {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-subtle);
}
.cookie-banner__btn--outline:hover { border-color: var(--text-2); color: var(--text-1); }
.cookie-banner__btn--fill {
  background: var(--brand);
  color: var(--bg-base);
}
.cookie-banner__btn--fill:hover { background: var(--brand-alt); }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border-subtle);
  background: rgba(13, 17, 23, 0.97);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__logo { flex-shrink: 0; }
.site-header__nav { flex: 1; }
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.site-header__nav a {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 400;
  transition: color 0.2s;
}
.site-header__nav a:hover { color: var(--brand); }
.site-header__cta { flex-shrink: 0; }
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: var(--bg-base);
  padding: calc(var(--section-gap) * 0.9) 1.5rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.2rem;
}
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__subline {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__trust-mini {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hero__trust-mini li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-2);
}
.hero__trust-icon { color: var(--brand); font-weight: 700; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__img-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
}
.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(34,197,94,0.15) 100%);
  border-radius: var(--radius-l);
  border: 1px solid rgba(34,197,94,0.2);
}
.hero__floating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--highlight);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-highlight);
  text-align: center;
  min-width: 130px;
}
.hero__floating-badge-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
}
.hero__floating-badge-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.2rem;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--bg-layer);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
}
.trust-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-strip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(34,197,94,0.1);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-brand);
}
.trust-strip__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-1);
  font-family: var(--font-body);
  margin-bottom: 0.2rem;
}
.trust-strip__item p {
  font-size: 0.8rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.4;
}

/* ---- PARA QUIÉN ---- */
.para-quien {
  padding: var(--section-gap) 1.5rem;
  background: var(--bg-base);
}
.para-quien__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.para-quien__text h2 { margin-bottom: 1rem; }
.para-quien__lead {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.para-quien__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.para-quien__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.checkmark {
  color: var(--brand);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.para-quien__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.para-quien__img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-subtle);
}
.para-quien__img-main img { width: 100%; height: 100%; object-fit: cover; }
.para-quien__img-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--border-subtle);
}
.para-quien__img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ---- PRODUCTO ---- */
.producto {
  background: var(--bg-layer);
  padding: var(--section-gap) 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.producto__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: calc(var(--gap) * 1.5);
  align-items: center;
}
.producto__visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.producto__img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(34,197,94,0.2));
  transition: filter 0.3s;
}
.producto__img:hover { filter: drop-shadow(0 24px 70px rgba(34,197,94,0.3)); }
.producto__tag-pill {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--highlight);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  font-family: var(--font-display);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-highlight);
}
.producto__info h2 { margin-bottom: 1rem; }
.producto__info > p { font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.75; }
.producto__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.producto__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.producto__feature-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  margin-top: 0.55rem;
}

/* ---- LIFESTYLE CARDS ---- */
.lifestyle {
  background: var(--bg-base);
  padding: var(--section-gap) 1.5rem;
}
.lifestyle__inner { max-width: var(--container); margin: 0 auto; }
.lifestyle__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.lifestyle__header h2 { margin-bottom: 1rem; }
.lifestyle__header p { font-size: 1rem; }
.lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lifestyle-card {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lifestyle-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.lifestyle-card--peach { background: var(--pastel-peach); }
.lifestyle-card--mint { background: var(--pastel-mint); }
.lifestyle-card--sky { background: var(--pastel-sky); }
.lifestyle-card--lavender { background: var(--pastel-lavender); }
.lifestyle-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lifestyle-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lifestyle-card:hover .lifestyle-card__img-wrap img { transform: scale(1.04); }
.lifestyle-card__body {
  padding: 1.2rem;
}
.lifestyle-card__body h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.lifestyle-card__body p {
  color: #4A5568;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- RUTINA ---- */
.rutina {
  background: var(--bg-layer);
  padding: var(--section-gap) 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.rutina__inner { max-width: 800px; margin: 0 auto; }
.rutina__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rutina__header h2 { margin-bottom: 0.5rem; }
.rutina__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rutina__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
}
.rutina__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(34,197,94,0.15);
  line-height: 1;
  text-align: center;
  transition: color 0.3s;
}
.rutina__step:hover .rutina__step-num { color: rgba(34,197,94,0.35); }
.rutina__step-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-1); }
.rutina__step-content p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }
.rutina__connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--border-brand), transparent);
  margin-left: 39px;
}
.rutina__cta-wrap { text-align: center; margin-top: 3rem; }

/* ---- CONFIANZA ---- */
.confianza {
  background: var(--bg-base);
  padding: var(--section-gap) 1.5rem;
}
.confianza__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.confianza__text h2 { margin-bottom: 1rem; }
.confianza__text > p { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.confianza__points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.confianza__points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.confianza__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(34,197,94,0.08);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confianza__contact-card {
  background: var(--bg-layer);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-l);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.confianza__contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}
.confianza__contact-card > p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 1.5rem; }
.confianza__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.confianza__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.confianza__contact-list span { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.confianza__contact-list a { color: var(--brand); }
.confianza__contact-list a:hover { color: var(--brand-alt); }
.confianza__contact-list address { color: var(--text-2); font-size: 0.9rem; line-height: 1.6; }

/* ---- OPINIONES ---- */
.opiniones {
  background: var(--bg-layer);
  padding: var(--section-gap) 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.opiniones__inner { max-width: var(--container); margin: 0 auto; }
.opiniones__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.opiniones__header h2 { margin-bottom: 0.75rem; }
.opiniones__header p { font-size: 1rem; }
.opiniones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.opinion-card {
  background: var(--bg-layer-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-l);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.opinion-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.opinion-card--featured {
  border-color: var(--border-brand);
  background: linear-gradient(135deg, var(--bg-layer-2), rgba(34,197,94,0.04));
}
.opinion-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.opinion-card__text {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}
.opinion-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.opinion-card__avatar {
  width: 38px;
  height: 38px;
  background: var(--bg-layer-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-2);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}
.opinion-card__avatar--green {
  background: rgba(34,197,94,0.15);
  color: var(--brand);
  border-color: var(--border-brand);
}
.opinion-card__footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-1);
  font-family: var(--font-body);
}
.opinion-card__footer span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ---- PEDIDO ---- */
.pedido {
  background: var(--bg-base);
  padding: var(--section-gap) 1.5rem;
  position: relative;
  overflow: hidden;
}
.pedido::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pedido__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap);
  align-items: start;
}
.pedido__offer h2 { margin-bottom: 0.5rem; }
.pedido__product-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-layer);
  border-radius: var(--radius-l);
  border: 1px solid var(--border-subtle);
}
.pedido__product-display img {
  width: 90px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
.pedido__price-block { display: flex; flex-direction: column; gap: 0.2rem; }
.pedido__price-label { font-size: 0.78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }
.pedido__price { font-size: 2.2rem; font-weight: 900; font-family: var(--font-display); color: var(--highlight); line-height: 1; }
.pedido__price-vat { font-size: 0.78rem; color: var(--text-3); }
.pedido__perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pedido__perks li { font-size: 0.9rem; color: var(--text-2); display: flex; align-items: center; gap: 0.5rem; }

.pedido__form-wrap {
  background: var(--bg-layer);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.pedido__form-header { margin-bottom: 1.75rem; }
.pedido__form-header h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.pedido__form-header p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; margin: 0; }
.pedido__form { display: flex; flex-direction: column; gap: 1rem; }
.pedido__form-note { font-size: 0.76rem; color: var(--text-3); line-height: 1.5; margin-top: 0.5rem; margin-bottom: 0; text-align: center; }

/* ---- FORM FIELDS ---- */
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.form-field label span { color: var(--highlight); margin-left: 2px; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  background: var(--bg-layer-2);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-s);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.form-field input.error { border-color: #EF4444; }
.form-field__error { font-size: 0.78rem; color: #EF4444; min-height: 1rem; }
.form-field--consent { flex-direction: row; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.form-checkbox span { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
.form-checkbox span a { color: var(--brand); text-decoration: underline; }
.form-field--consent .form-field__error { width: 100%; padding-left: 1.5rem; }

/* ---- FAQ ---- */
.faq {
  background: var(--bg-layer);
  padding: var(--section-gap) 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 3rem; }
.faq__header h2 { margin-bottom: 0.5rem; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-layer-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-brand); }
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}
.faq-item__question:hover { background: rgba(255,255,255,0.03); }
.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-item__icon { background: var(--brand); transform: rotate(45deg); }
.faq-item.open .faq-item__icon::before,
.faq-item.open .faq-item__icon::after { background: var(--bg-base); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}
.faq-item__answer a { color: var(--brand); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.site-footer__brand {}
.site-footer__logo { display: inline-block; margin-bottom: 1rem; }
.site-footer__tagline { font-size: 0.88rem; color: var(--text-3); line-height: 1.6; margin-bottom: 1.25rem; }
.site-footer__address { font-size: 0.82rem; color: var(--text-3); line-height: 1.8; }
.site-footer__address a { color: var(--text-3); }
.site-footer__address a:hover { color: var(--brand); }
.site-footer__nav-group h4 { margin-bottom: 1rem; font-size: 0.78rem; }
.site-footer__nav-group ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__nav-group a { font-size: 0.85rem; color: var(--text-3); transition: color 0.2s; }
.site-footer__nav-group a:hover { color: var(--brand); }
.site-footer__bottom {
  background: var(--bg-layer);
  border-top: 1px solid var(--border-subtle);
}
.site-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer__disclaimer { font-size: 0.75rem; color: var(--text-3); line-height: 1.6; }
.site-footer__copy { font-size: 0.75rem; color: var(--text-3); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__content > * {
  animation: fadeInUp 0.6s ease both;
}
.hero__badge { animation-delay: 0.05s; }
.hero__headline { animation-delay: 0.15s; }
.hero__subline { animation-delay: 0.25s; }
.hero__cta-group { animation-delay: 0.35s; }
.hero__trust-mini { animation-delay: 0.45s; }
.hero__visual { animation: fadeInUp 0.6s 0.2s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .lifestyle__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .site-header__nav,
  .site-header__cta {
    display: none;
  }
  .site-header__nav.nav-open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    z-index: 800;
  }
  .site-header__nav.nav-open ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .site-header__nav.nav-open a { font-size: 1.1rem; color: var(--text-1); }
  .site-header__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__floating-badge { display: none; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; text-align: center; justify-content: center; }

  .para-quien__inner { grid-template-columns: 1fr; }
  .producto__inner { grid-template-columns: 1fr; }
  .producto__visual-wrap { margin-bottom: 1rem; }
  .confianza__inner { grid-template-columns: 1fr; }
  .opiniones__grid { grid-template-columns: 1fr; }
  .pedido__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .lifestyle__grid { grid-template-columns: 1fr; }
  .rutina__step { grid-template-columns: 60px 1fr; }
  .rutina__connector { margin-left: 29px; }
  .pedido__form-wrap { padding: 1.5rem; }
  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .cookie-banner__actions { width: 100%; flex-direction: column; }
  .cookie-banner__btn { width: 100%; text-align: center; }
}
