/* ═══════════════════════════════════════════════
   VALENCIA ESSENCE — style.css
   Paleta: verde claro / verde medio / verde oscuro / tierra naranja
   Tipografía: Cormorant Garamond (serif editorial) + DM Sans (body)
   ═══════════════════════════════════════════════ */

:root {
  --green-light: #d5e2d2;
  --green-mid: #6c7f67;
  --green-dark: #4d5c49;
  --earth: #ffab5d;
  --earth-dark: #e8943e;
  --cream: #faf7f2;
  --cream-warm: #f4ede2;
  --linen: #ede6d9;
  --text: #2a2017;
  --text-light: #6b5d4e;
  --white: #ffffff;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 8rem);
  --max-w: 1220px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-soft: 0 4px 40px rgba(42, 32, 23, .08);
  --shadow-card: 0 8px 48px rgba(42, 32, 23, .12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

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

.label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.label--light {
  color: var(--green-light);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .85rem 1.8rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--earth);
  color: var(--text);
  border-color: var(--earth);
}

.btn--primary:hover {
  background: var(--earth-dark);
  border-color: var(--earth-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 171, 93, .35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(42, 32, 23, .25);
}

.btn--ghost:hover {
  border-color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, .12);
}

.btn--sm {
  padding: .6rem 1.2rem;
  font-size: .8rem;
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: .95rem;
}

.btn--xl {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal--right {
  transform: translateX(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 32, 23, .07);
  transition: box-shadow .3s;
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo__img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.logo__img--footer {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text-light);
  transition: color .2s;
}

.nav a:hover {
  color: var(--text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(42, 32, 23, .07);
  background: var(--cream);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__link {
  font-size: .95rem;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(42, 32, 23, .06);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem 2rem var(--section-pad);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--earth-dark);
  background: rgba(255, 171, 93, .12);
  border: 1px solid rgba(255, 171, 93, .3);
  padding: .45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.hero__h1 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .02em;
}

.hero__image {
  position: relative;
}

.hero__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero__img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(77, 92, 73, .18));
  pointer-events: none;
}

.hero__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--earth);
  color: var(--text);
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: .75rem 1rem;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 171, 93, .4);
}

/* ══════════════════════════════════
   CONNECTION
══════════════════════════════════ */
.connection {
  background: var(--cream-warm);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
}

.connection__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--section-pad) 2rem;
  text-align: center;
}

.connection__inner h2 {
  margin-bottom: 1.2rem;
}

.connection__inner p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════
   DIFERENCIACIÓN
══════════════════════════════════ */
.diff {
  padding: var(--section-pad) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.diff__text {
  margin-bottom: 3.5rem;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.diff__item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  transition: box-shadow .3s, transform .3s;
}

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

.diff__num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: .75rem;
}

.diff__item h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: .6rem;
}

.diff__item p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ══════════════════════════════════
   PRODUCTOS
══════════════════════════════════ */
.productos {
  background: var(--cream-warm);
  padding: var(--section-pad) 2rem;
  border-top: 1px solid var(--linen);
}

.productos__header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}

.productos__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.producto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--linen);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s, transform .3s;
}

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

.producto-card--dark {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.producto-card--dark h3,
.producto-card--dark p,
.producto-card--dark .producto-card__attrs span {
  color: var(--white);
}

.producto-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.producto-card__img-wrap img {
  transition: transform .6s ease;
}

.producto-card:hover .producto-card__img-wrap img {
  transform: scale(1.04);
}

.producto-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--earth);
  color: var(--text);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 99px;
}

.producto-card__body {
  padding: 2rem 2rem 2.5rem;
}

.producto-card__attrs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.producto-card__attrs span {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-light);
  padding: .25rem .75rem;
  border-radius: 99px;
}

.producto-card--dark .producto-card__attrs span {
  background: rgba(213, 226, 210, .15);
  color: var(--green-light);
}

.producto-card__body h3 {
  margin-bottom: .75rem;
}

.producto-card__body p {
  font-size: .92rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.producto-card--dark .producto-card__body p {
  color: rgba(255, 255, 255, .72);
}

/* ══════════════════════════════════
   CUÁL ENCAJA
══════════════════════════════════ */
.cual {
  padding: var(--section-pad) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cual__inner {
  max-width: 860px;
  margin: 0 auto;
}

.cual__inner h2 {
  margin-bottom: 3rem;
}

.cual__table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.cual__col {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.cual__col-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
}

.cual__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cual__dot--green {
  background: var(--green-mid);
}

.cual__dot--earth {
  background: var(--earth);
}

.cual__col ul {
  margin-bottom: 2rem;
}

.cual__col li {
  font-size: .88rem;
  color: var(--text-light);
  padding: .55rem 0;
  border-bottom: 1px solid var(--linen);
  line-height: 1.5;
}

.cual__col li::before {
  content: '— ';
  color: var(--green-mid);
}

.cual__divider {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--text-light);
  padding-top: 3rem;
  text-align: center;
}

/* ══════════════════════════════════
   PREVENTA
══════════════════════════════════ */
.preventa {
  background: var(--green-dark);
  padding: var(--section-pad) 2rem;
  text-align: center;
}

.preventa__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.preventa__header {
  margin-bottom: 4rem;
}

.preventa__header h2 {
  color: var(--white);
}

.preventa__header p {
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  max-width: 50ch;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.preventa__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

.preventa__card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background .3s;
}

.preventa__card:hover {
  background: rgba(255, 255, 255, .11);
}

.preventa__card--featured {
  background: rgba(255, 171, 93, .12);
  border-color: rgba(255, 171, 93, .45);
  position: relative;
  padding-top: 3.5rem;
}

.preventa__badge-rec {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--earth);
  color: var(--text);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.preventa__qty {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
}

.preventa__jabón {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
}

.preventa__price {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--earth);
  margin-bottom: .4rem;
}

.preventa__detail {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.preventa__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .04em;
  margin-bottom: 3rem;
}

.preventa__how {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .75rem;
  padding: .75rem 1.2rem;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, .15);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.preventa__product {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.preventa__product:first-of-type {
  margin-top: 0;
}

.preventa__product-name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .25rem;
}

.preventa__product-desc {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════
   SUSCRIPCIÓN
══════════════════════════════════ */
.suscripcion {
  background: var(--linen);
  border-top: 1px solid rgba(42, 32, 23, .1);
}

.suscripcion__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: calc(var(--section-pad) * .75) 2rem;
  text-align: center;
}

.suscripcion__inner h2 {
  margin-bottom: .8rem;
}

.suscripcion__inner p {
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

/* ══════════════════════════════════
   HISTORIA
══════════════════════════════════ */
.historia {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
}

.historia__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.historia__img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.historia__text {
  padding: 1rem 0;
}

.historia__text h2 {
  margin-bottom: 1.5rem;
}

.historia__text p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.historia__cierre {
  font-family: var(--ff-serif);
  font-size: 1.15rem !important;
  color: var(--green-dark) !important;
  line-height: 1.5 !important;
}

/* ══════════════════════════════════
   TRUST
══════════════════════════════════ */
.trust {
  background: var(--green-dark);
  padding: 4rem 2rem;
}

.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust__item {
  text-align: center;
  color: var(--white);
}

.trust__icon {
  font-size: 1.2rem;
  color: var(--earth);
  margin-bottom: .75rem;
}

.trust__item strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .4rem;
}

.trust__item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq {
  background: var(--cream-warm);
  border-top: 1px solid var(--linen);
  padding: var(--section-pad) 2rem;
}

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq__header {
  margin-bottom: 3rem;
}

.faq__item {
  border-bottom: 1px solid var(--linen);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}

.faq__q:hover {
  color: var(--green-dark);
}

.faq__arrow {
  font-size: 1.2rem;
  color: var(--green-mid);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq__item.open .faq__arrow {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.faq__item.open .faq__a {
  max-height: 200px;
  padding-bottom: 1.4rem;
}

.faq__a p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq__contact {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
}

.faq__contact p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: .25rem;
}

.faq__contact p:first-child {
  font-weight: 500;
  color: var(--text);
  margin-bottom: .35rem;
}

.faq__email {
  display: inline-block;
  margin-top: .75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: none;
  padding: .6rem 1.4rem;
  background: var(--green-light);
  border-radius: 6px;
  transition: all .2s;
}

.faq__email:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ══════════════════════════════════
   CTA FINAL
══════════════════════════════════ */
.cta-final {
  background: var(--text);
  padding: var(--section-pad) 2rem;
  text-align: center;
}

.cta-final__inner {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-final__inner p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.footer__brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .75rem;
}

.logo--footer {
  color: var(--white);
}

.logo--footer em {
  color: var(--earth);
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__links>div {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links strong {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .25rem;
}

.footer__links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
}

.footer__help-text {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .4rem;
  line-height: 1.5;
}

.footer__email {
  display: inline-block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--earth) !important;
  text-decoration: none;
  transition: color .2s;
}

.footer__email:hover {
  color: var(--white) !important;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .nav,
  .header .btn:not(.burger) {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

  .cual__divider {
    padding: 0;
    text-align: center;
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__links {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: clamp(3rem, 10vw, 5rem);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .footer__links {
    flex-direction: column;
    gap: 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}

/* ══════════════════════════════════
   PÁGINAS DE POLÍTICAS
══════════════════════════════════ */
.legal-page {
  padding: 8rem 2rem var(--section-pad);
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .5rem;
}

.legal-page .legal-sub {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--linen);
}

.legal-page h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--green-dark);
  margin-top: 2.5rem;
  margin-bottom: .8rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.legal-page p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: .5rem 0 1.2rem 1.5rem;
  list-style: disc;
}

.legal-page ul li {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: .3rem;
}

.legal-page a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--earth-dark);
}

.legal-page .legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--linen);
  font-size: .85rem;
  color: var(--green-mid);
  text-decoration: none;
  transition: color .2s;
}

.legal-page .legal-back:hover {
  color: var(--earth-dark);
}

.legal-footer-simple {
  padding: 2rem;
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  border-top: 1px solid var(--linen);
  background: var(--cream);
}