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

:root {
  --green:       #3c544b;
  --green-dark:  #2d5849;
  --green-light: #d4dcd8;
  --green-pale:  #f0f4f2;
  --earth:       #8b7355;
  --earth-pale:  #f5f1eb;
  --red:         #ed4a3e;
  --bg:          #fafafa;
  --white:       #ffffff;
  --ink:         #323232;
  --mid:         #606060;
  --border:      #d4dcd8;
  --ff:          'Montserrat', sans-serif;
  --ff-serif:    'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--ff); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── TOP BAR ── */
.top-bar { background: var(--green); color: rgba(255,255,255,0.85); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-align: center; padding: .5rem 1rem; text-transform: uppercase; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: .8rem 3rem; background: var(--white); border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: .5rem; }
.nav-logo { height: 58px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 1.4rem; background: var(--green); color: var(--white); text-decoration: none; border: 2px solid var(--green); transition: background .2s; }
.nav-cta:hover { background: var(--green-dark); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 90px); }
.hero-texto { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem 5rem 5rem; }
.hero-logo-img { height: 100px; width: auto; display: block; margin-bottom: 2rem; filter: drop-shadow(0 2px 10px rgba(60,84,75,0.12)); align-self: flex-start; }
.hero-botanico-sep { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.6rem; }
.hero-botanico-sep::before,
.hero-botanico-sep::after { content: ''; display: block; height: 1px; width: 36px; background: var(--green-light); }
.hero-botanico-sep span { font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--green); }
.hero-titulo { font-size: clamp(1.9rem, 3vw, 3.1rem); font-weight: 600; line-height: 1.18; color: var(--ink); margin-bottom: 1.4rem; font-family: var(--ff-serif); }
.hero-titulo em { font-style: italic; color: var(--green); }
.hero-sub { font-size: .9rem; line-height: 1.8; color: var(--mid); max-width: 44ch; margin-bottom: 2.5rem; }
.hero-imagen { overflow: hidden; position: relative; }
.hero-imagen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-badge { position: absolute; bottom: 2rem; left: 2rem; background: var(--white); padding: .7rem 1.1rem; font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); border-left: 3px solid var(--green); }

/* ── MARQUEE ── */
.marquee { background: var(--green-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .7rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 30s linear infinite; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.marquee-inner span { margin: 0 2.4rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SOBRE NOSOTROS ── */
.sobre-nosotros { background: var(--earth-pale); padding: 6rem 5rem; }
.sobre-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.sobre-texto .s-label { color: var(--earth); }
.sobre-texto .s-titulo { margin-bottom: 1.5rem; }
.sobre-texto p { font-size: .9rem; line-height: 1.9; color: var(--mid); }
.pilares { display: flex; flex-direction: column; gap: 2rem; padding-top: 1rem; }
.pilar { display: flex; gap: 1.2rem; align-items: flex-start; }
.pilar-icono { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.pilar-titulo { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: .3rem; }
.pilar-desc { font-size: .82rem; line-height: 1.7; color: var(--mid); }

/* ── SHARED LABELS ── */
.s-label { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: .6rem; }
.s-titulo { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.18; color: var(--ink); font-family: var(--ff-serif); }
.s-titulo em { font-style: italic; color: var(--green); }

/* ── FILTERS ── */
.filtros-wrap { padding: 2.5rem 3rem 0; max-width: 1280px; margin: 0 auto; }
.filtros { display: flex; gap: .6rem; flex-wrap: wrap; }
.filtro-btn { font-family: var(--ff); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .45rem 1.1rem; border: 1px solid var(--border); background: var(--white); color: var(--mid); cursor: pointer; transition: all .2s; }
.filtro-btn:hover,
.filtro-btn.activo { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── CATALOG SECTION ── */
.linea-titulo { max-width: 1280px; margin: 0 auto; padding: 3.5rem 3rem 1rem; }
.linea-titulo .s-label { color: var(--earth); }
.linea-titulo h2 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 400; color: var(--mid); max-width: 60ch; margin-top: .4rem; font-style: italic; font-family: var(--ff-serif); }
.linea-divider { width: 40px; height: 2px; background: var(--green); margin: .8rem 0; }
.catalogo-seccion { padding: 2rem 3rem 4rem; max-width: 1280px; margin: 0 auto; }
.productos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1rem; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(60,84,75,0.1); }
.card-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--green-pale); }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; position: absolute; inset: 0; }
.card:hover .card-img img { transform: scale(1.05); }
.card-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; color: var(--green); }
.card-placeholder svg { opacity: .35; }
.card-placeholder span { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .45; }
.card-tag { position: absolute; top: .9rem; right: .9rem; font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; background: var(--white); color: var(--green); padding: .25rem .6rem; border: 1px solid var(--border); z-index: 1; }
.card-linea { position: absolute; top: .9rem; left: .9rem; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--green); color: var(--white); padding: .2rem .55rem; z-index: 1; }
.card-img-nombre { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(60,84,75,0.82); color: var(--white); font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-align: center; padding: .45rem .6rem; z-index: 1; }
.card-info { padding: 1.3rem 1.4rem; }
.card-cat { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); margin-bottom: .4rem; }
.card-nombre { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; line-height: 1.3; }
.card-ingrediente { font-size: .72rem; color: var(--green); font-weight: 500; margin-bottom: .5rem; }
.card-desc { font-size: .78rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.card-precio { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.card-precio-consulta { font-size: .8rem; font-weight: 500; color: var(--mid); }

/* ── RITUAL ── */
.ritual-seccion { background: var(--green-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 3rem; max-width: 1280px; margin: -2rem auto 0; }
.ritual-titulo { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.ritual-titulo::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ritual-pasos { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1.2rem; }
.ritual-paso { display: flex; gap: .8rem; align-items: flex-start; }
.ritual-num { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: var(--white); font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.ritual-texto { font-size: .78rem; line-height: 1.6; color: var(--mid); }
.ritual-texto strong { color: var(--ink); display: block; margin-bottom: .15rem; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── BUTTONS ── */
.btn-ppal { display: inline-block; background: var(--green); color: var(--white); padding: .85rem 2.2rem; font-family: var(--ff); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--green); cursor: pointer; transition: background .2s; }
.btn-ppal:hover { background: var(--green-dark); }
.btn-comprar { font-family: var(--ff); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1rem; border: 2px solid var(--red); color: var(--white); background: var(--red); cursor: pointer; transition: background .2s; }
.btn-comprar:hover { background: #c73d32; }
.btn-info { font-family: var(--ff); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1rem; border: 2px solid var(--green); color: var(--green); background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.btn-info:hover { background: var(--green); color: var(--white); }

/* ── KIT TOTAL ── */
.kit-seccion { background: var(--earth-pale); padding: 5rem 3rem; border-top: 1px solid var(--border); }
.kit-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.kit-imagen { overflow: hidden; border: 1px solid var(--border); }
.kit-imagen img { width: 100%; height: 520px; object-fit: cover; object-position: center; display: block; }
.kit-texto .s-label { color: var(--earth); }
.kit-slogan { font-family: var(--ff-serif); font-size: 1.15rem; font-style: italic; color: var(--green); margin: .8rem 0 1.4rem; }
.kit-lista { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .8rem; margin: 1.2rem 0 2rem; }
.kit-lista li { font-size: .78rem; color: var(--mid); display: flex; align-items: center; gap: .5rem; }
.kit-lista li::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── LOTE ── */
.lote-seccion { background: var(--green); display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.lote-texto { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.lote-texto .s-label { color: var(--green-light); }
.lote-texto .s-titulo { color: var(--white); }
.lote-texto p { margin-top: 1.2rem; font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 44ch; }
.lote-precio { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-top: 1.5rem; }
.lote-precio span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.lote-botones { margin-top: 2rem; }
.lote-imagen { overflow: hidden; }
.lote-imagen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; min-height: 500px; }

/* ── CONTACTO ── */
.contacto { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); }
.ct-texto { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.ct-texto .s-label { color: var(--green-light); }
.ct-texto .s-titulo { color: var(--white); }
.ct-texto p { margin-top: 1rem; font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 40ch; }
.ct-datos { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.dato { display: flex; align-items: center; gap: .9rem; font-size: .85rem; color: rgba(255,255,255,0.8); }
.dato-i { width: 32px; height: 32px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-form { padding: 5rem; background: rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.fg { display: flex; flex-direction: column; gap: .3rem; }
.fg label { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.fg input, .fg textarea, .fg select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: .75rem 1rem; font-family: var(--ff); font-size: .86rem; outline: none; transition: border-color .2s; }
.fg input:focus, .fg textarea:focus { border-color: rgba(255,255,255,0.5); }
.fg textarea { resize: vertical; min-height: 90px; }
.fg select option { background: #323232; }
.btn-enviar { background: var(--green); color: var(--white); border: none; padding: .9rem; font-family: var(--ff); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .2s; margin-top: .3rem; }
.btn-enviar:hover { background: var(--green-dark); }

/* ── FOOTER ── */
footer { background: #1a1a1a; padding: 2.5rem 3rem; }
.footer-cta { text-align: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-cta-titulo { font-family: var(--ff-serif); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.75); }
.footer-cta p { font-size: .82rem; color: rgba(255,255,255,0.4); max-width: 60ch; margin: .6rem auto 0; line-height: 1.7; font-family: var(--ff-serif); font-style: italic; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-logo { display: flex; align-items: center; gap: .8rem; }
.f-logo img { height: 40px; width: auto; opacity: .8; }
.f-copy { font-size: .7rem; color: rgba(255,255,255,0.3); }
.f-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.f-links a { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,0.7); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); width: 100%; max-width: 440px; padding: 2.5rem; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1.2rem; font-size: 1.6rem; cursor: pointer; color: var(--mid); background: none; border: none; line-height: 1; }
.modal-titulo { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.modal-precio { font-size: 1.8rem; font-weight: 700; color: var(--green); margin-bottom: .4rem; }
.modal-subtitulo { font-size: .75rem; color: var(--mid); margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.2rem; }
.modal-paypal { display: grid; justify-items: center; gap: .5rem; width: 100%; margin-top: .5rem; }
.pp-btn { width: 100%; background: #ffc439; color: #003087; border: none; padding: .9rem; font-size: .85rem; font-weight: 700; cursor: pointer; border-radius: 4px; }
.paypal-nota { text-align: center; margin-top: .8rem; font-size: .68rem; color: var(--mid); }

/* ── CARRITO ── */
.btn-carrito-nav { position: relative; background: none; border: 2px solid var(--green); color: var(--green); padding: .45rem .75rem; cursor: pointer; display: flex; align-items: center; gap: .3rem; transition: background .2s, color .2s; }
.btn-carrito-nav:hover { background: var(--green); color: var(--white); }
.carrito-badge { position: absolute; top: -.45rem; right: -.45rem; background: var(--red); color: var(--white); font-size: .55rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.carrito-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 200; }
.carrito-overlay.open { display: block; }
.carrito-panel { position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%; background: var(--white); z-index: 201; display: flex; flex-direction: column; transition: right .3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.12); }
.carrito-panel.open { right: 0; }
.carrito-header { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border); }
.carrito-header span { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.carrito-header button { font-size: 1.6rem; background: none; border: none; cursor: pointer; color: var(--mid); line-height: 1; }
.carrito-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.carrito-vacio { text-align: center; color: var(--mid); font-size: .85rem; margin: 3rem 0; }
.ci { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.ci-img { width: 64px; height: 80px; object-fit: cover; background: var(--green-pale); flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-nombre { font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: .25rem; line-height: 1.3; }
.ci-precio { font-size: .85rem; font-weight: 700; color: var(--green); margin-bottom: .5rem; }
.ci-qty { display: flex; align-items: center; gap: .5rem; }
.ci-qty button { width: 26px; height: 26px; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .15s; }
.ci-qty button:hover { background: var(--green-pale); }
.ci-qty span { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }
.ci-eliminar { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--mid); padding: 0 .2rem; flex-shrink: 0; line-height: 1; }
.ci-eliminar:hover { color: var(--red); }
.ci-paypal { display: inline-block; margin-top: .5rem; background: #ffc439; color: #003087; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .8rem; text-decoration: none; border-radius: 3px; transition: background .2s; }
.ci-paypal:hover { background: #f0b429; }
.carrito-footer { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .8rem; }
.carrito-total { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.carrito-total span { font-size: 1.4rem; font-weight: 700; color: var(--green); }
.btn-carrito-ok { display: block; width: 100%; background: #25d366; color: var(--white); border: none; padding: 1rem; font-family: var(--ff); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-align: center; }
.btn-carrito-ok:hover { background: #1da851; }
.btn-seguir { display: block; width: 100%; background: transparent; color: var(--mid); border: 1px solid var(--border); padding: .7rem; font-family: var(--ff); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-align: center; }
.btn-seguir:hover { background: var(--green-pale); }

/* ── PRIVACIDAD (modal) ── */
.priv-bloques { display: flex; flex-direction: column; gap: 1.5rem; }
.priv-bloque { border-left: 3px solid var(--green); padding-left: 1.2rem; }
.priv-bloque h3 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.priv-bloque p { font-size: .82rem; color: var(--mid); line-height: 1.7; margin-bottom: .4rem; }
.priv-bloque ul { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.priv-bloque ul li { font-size: .82rem; color: var(--mid); line-height: 1.6; padding-left: 1rem; position: relative; }
.priv-bloque ul li::before { content: '·'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── TABLA COOKIES ── */
.cookies-wrap { overflow-x: auto; margin-top: 1.2rem; }
.cookies-tabla { width: 100%; border-collapse: collapse; font-size: .78rem; }
.cookies-tabla th { background: var(--green); color: var(--white); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .65rem .9rem; text-align: left; font-size: .68rem; }
.cookies-tabla td { padding: .6rem .9rem; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: top; line-height: 1.5; }
.cookies-tabla tr:last-child td { border-bottom: none; }
.cookies-tabla tr:nth-child(even) td { background: rgba(60,84,75,0.04); }
.cookie-tag { display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .15rem .5rem; border-radius: 2px; }
.cookie-tag.necesaria { background: var(--green-pale); color: var(--green); }
.cookie-tag.analitica { background: #eef2fb; color: #3a5abf; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero, .lote-seccion, .contacto { grid-template-columns: 1fr; }
  .hero-imagen { min-height: 65vw; }
  .hero-texto { padding: 3rem 1.5rem; }
  .sobre-inner, .kit-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-nosotros { padding: 4rem 1.5rem; }
  .kit-seccion { padding: 3rem 1.5rem; }
  .lote-texto, .ct-texto, .ct-form { padding: 3rem 1.5rem; }
  .catalogo-seccion, .filtros-wrap, .linea-titulo, .ritual-seccion { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}

@media (max-width: 640px) {
  nav { padding: .8rem 1.2rem; }
  .nav-links { display: none; }
  .hero-titulo { font-size: 1.8rem; }
  .modal { padding: 1.5rem; margin: 1rem; width: calc(100% - 2rem); }
  .lote-precio { font-size: 1.8rem; }
  .kit-lista { grid-template-columns: 1fr; }
}
