/* ============ Tokens ============ */
:root {
  --cream: #F8F2E7;
  --ink: #27201B;
  --ink-soft: #5B4F45;
  --ink-faint: #8A7B6E;
  --pink: #E4697E;
  --pink-dark: #C6485E;
  --pink-bg: #FBE9EC;
  --pink-light: #F3B4C0;
  --card: #FFF8F0;
  --contact-bg: #2E211B;
  --footer-bg: #241A15;
  --whatsapp: #25D366;

  --font-display: 'Abril Fatface', serif;
  --font-body: 'Quicksand', sans-serif;
  --font-script: 'Caveat', cursive;
}

/* ============ Reset ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
input, select, textarea { font-family: var(--font-body); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--pink); outline-offset: 1px; }
img { max-width: 100%; display: block; }
/* Reglas de esta hoja fijan `display` (img es block, .modelo-elegido es grid) y
   eso gana al display:none que el navegador aplica por el atributo [hidden].
   Sin esta línea la caja del modelo elegido se mostraba siempre, con su <img>
   vacío dentro: una imagen rota en el formulario del botón flotante. */
[hidden] { display: none !important; }

/* ============ Keyframes ============ */
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(6deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes flame { 0%,100% { transform: scale(1) rotate(-2deg); } 50% { transform: scale(1.15) rotate(3deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ============ Shared layout ============ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}
.section-boxed { background: var(--card); border-top: 1px solid rgba(39,32,27,.06); border-bottom: 1px solid rgba(39,32,27,.06); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }

.eyebrow { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: 3px; }
.eyebrow--dark { color: var(--pink-dark); }
.eyebrow--light { color: var(--pink-light); }
.eyebrow--pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-bg); border: 1px solid rgba(228,105,126,.35); color: var(--pink-dark);
  font-size: 12px; padding: 8px 16px; border-radius: 999px;
}

.h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 6vw, 76px); line-height: 1.05; margin: 22px 0 0;
}
.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.1; margin: 14px 0 0;
}
.h2--sm { font-size: clamp(30px, 3.5vw, 44px); }
.h2--light { color: var(--cream); font-size: clamp(36px, 4.5vw, 58px); line-height: 1.08; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 0; }

.body-text { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 22px 0 0; }
.body-text--light { color: rgba(248,242,231,.75); max-width: 480px; }
.lead { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 26px 0 0; max-width: 520px; }

.script { font-family: var(--font-script); font-size: 22px; color: var(--pink-light); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 999px; border: none; cursor: pointer;
  transition: all .25s; font-family: var(--font-body);
}
.btn--primary { background: var(--pink); color: #FFF8F0; box-shadow: 0 6px 18px rgba(228,105,126,.4); }
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 26px rgba(228,105,126,.5); }
.btn--outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 14px 30px; }
.btn--outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn--sm { font-size: 14px; padding: 10px 20px; box-shadow: 0 4px 14px rgba(228,105,126,.35); }
.btn--sm:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(228,105,126,.45); }
.btn--dark { background: var(--ink); color: var(--cream); font-size: 15px; padding: 14px 26px; white-space: nowrap; }
.btn--dark:hover { background: var(--pink); transform: translateY(-3px); }
.btn--block { width: 100%; padding: 16px; font-size: 16.5px; margin-top: 4px; box-shadow: 0 8px 20px rgba(228,105,126,.4); }
.btn--block:hover { background: var(--pink-dark); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(228,105,126,.5); }
.btn--block:active { transform: translateY(0) scale(.98); }
.btn--whatsapp {
  background: var(--whatsapp); color: #fff; margin-top: 30px;
  box-shadow: 0 8px 22px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(37,211,102,.45); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn-row--center { justify-content: center; }

/* Página 404: centra el bloque en la ventana en lugar de dejarlo pegado al nav. */
.notfound { display: grid; place-items: center; min-height: 62vh; }

.link-underline {
  text-decoration: none; color: var(--pink-dark); font-weight: 700; font-size: 16px;
  border-bottom: 2px solid rgba(228,105,126,.5); padding-bottom: 3px; transition: all .25s;
}
.link-underline:hover { color: var(--pink); border-color: var(--pink); }

/* ============ Image placeholder slots ============ */
.img-slot {
  display: block; width: 100%; position: relative;
  border-radius: var(--radius, 12px);
  background: repeating-linear-gradient(135deg, rgba(39,32,27,.035) 0 12px, rgba(39,32,27,.06) 12px 24px);
  border: 1.5px dashed rgba(39,32,27,.25);
  overflow: hidden;
}
.img-slot__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; text-align: center; padding: 16px; color: var(--ink-faint);
}
.img-slot__icon { opacity: .5; }
.img-slot__caption { font-size: 12.5px; font-weight: 600; max-width: 85%; line-height: 1.4; }

.img-slot__trigger {
  display: block; width: 100%; height: 100%; padding: 0; margin: 0; border: none;
  background: none; cursor: pointer; position: relative; border-radius: inherit;
}
.img-slot__zoom {
  position: absolute; bottom: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(39,32,27,.55); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.85); transition: opacity .2s ease, transform .2s ease;
}
.img-slot__trigger:hover .img-slot__zoom,
.img-slot__trigger:focus-visible .img-slot__zoom { opacity: 1; transform: scale(1); }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(20,16,13,.88);
  opacity: 0; transition: opacity .25s ease;
}
.lightbox.is-open .lightbox__backdrop { opacity: 1; }
.lightbox__figure {
  position: relative; max-width: min(92vw, 900px); max-height: 88vh;
  transform: scale(.95); opacity: 0; transition: transform .25s ease, opacity .25s ease;
}
.lightbox.is-open .lightbox__figure { transform: scale(1); opacity: 1; }
.lightbox__img { display: block; max-width: 100%; max-height: 88vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: -18px; right: -18px; width: 40px; height: 40px; border-radius: 50%;
  border: none; background: var(--cream); color: var(--ink); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.lightbox__close:hover { background: #fff; }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,242,231,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(39,32,27,.08);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--font-display); font-size: 24px; letter-spacing: .5px; }
.nav__brand-tag { font-size: 8.5px; letter-spacing: 3.2px; color: var(--pink); font-weight: 700; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 22px; justify-content: flex-end; }
.nav__link { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14px; transition: color .2s; }
.nav__link:hover { color: var(--pink); }

/* Botón hamburguesa: solo existe en la vista móvil (ver media query abajo). */
.nav__toggle {
  display: none;
  border: 1px solid rgba(39,32,27,.14); background: transparent; border-radius: 12px;
  width: 42px; height: 42px; padding: 0; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav__toggle-bar {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.nav.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Los enlaces del nav en una sola fila necesitan ~860px; por debajo de eso
   pasan a un panel desplegable para no comerse la primera pantalla del móvil. */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__inner { gap: 12px; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(39,32,27,.08);
    padding: 8px 24px 20px;
    /* Oculto por defecto sin display:none, para poder animar la apertura. */
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    box-shadow: 0 14px 30px rgba(39,32,27,.08);
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: 13px 0; border-bottom: 1px solid rgba(39,32,27,.06); font-size: 16px; }
  .nav__links .btn { margin-top: 16px; text-align: center; }
}

/* ============ Sprinkles ============ */
.sprinkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.sprinkle { position: absolute; opacity: .35; pointer-events: none; animation: floaty 6s ease-in-out infinite; }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 80px;
  display: flex; flex-wrap: wrap; gap: 48px; align-items: center; position: relative;
}
.hero__copy { flex: 1 1 440px; min-width: min(440px, 100%); animation: fadeUp .8s ease both; }
.highlight { font-style: normal; color: var(--pink); position: relative; }
.highlight__swoosh { position: absolute; left: 0; bottom: -10px; width: 100%; height: 14px; }

.perk-row { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 38px; }
.perk { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.perk__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--pink-bg); display: grid; place-items: center; color: var(--pink); }

.hero__art { flex: 1 1 380px; min-width: min(380px, 100%); position: relative; animation: fadeUp .8s .15s ease both; }
.hero__art-frame {
  position: absolute; inset: 18px -18px -18px 18px; border-radius: 40px;
  border: 2px dashed rgba(228,105,126,.5);
}
.img-slot--hero { box-shadow: 0 24px 60px rgba(39,32,27,.18); }

.floating-card {
  position: absolute; background: var(--card); border-radius: 16px; padding: 12px 18px;
  box-shadow: 0 10px 26px rgba(39,32,27,.15); display: flex; align-items: center; gap: 10px;
  animation: bob 4s ease-in-out infinite;
}
.floating-card--left { top: 26px; left: -14px; }
.floating-card--right { bottom: 34px; right: -10px; animation-delay: 1.2s; }
.floating-card--dark { background: var(--ink); color: var(--cream); box-shadow: 0 10px 26px rgba(39,32,27,.3); }
.floating-card__flame { font-size: 20px; display: inline-block; animation: flame 1.6s ease-in-out infinite; }
.floating-card__text { font-size: 13px; font-weight: 700; }
.floating-card__accent { color: var(--pink); }

/* ============ Marquee ============ */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden; padding: 14px 0;
  transform: rotate(-1deg) scale(1.02); margin: 8px -10px 0;
}
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 26s linear infinite; }
.marquee__group {
  display: flex; align-items: center; gap: 28px; padding-right: 28px;
  font-weight: 700; font-size: 14px; letter-spacing: 2.5px; white-space: nowrap;
}
.marquee__dot { color: var(--pink); }

/* ============ Nosotros ============ */
.nosotros { display: flex; flex-wrap: wrap; gap: 56px; align-items: center; padding-top: 96px; }
.nosotros__art { flex: 1 1 360px; min-width: min(360px, 100%); position: relative; }
.img-slot--nosotros { transform: rotate(-2deg); box-shadow: 0 20px 50px rgba(39,32,27,.16); }
.sticker {
  position: absolute; bottom: -18px; right: 8px; background: var(--pink); color: #FFF8F0;
  border-radius: 999px; padding: 12px 22px; transform: rotate(3deg);
  box-shadow: 0 10px 24px rgba(228,105,126,.4); font-family: var(--font-script); font-size: 22px;
}
.nosotros__copy { flex: 1 1 440px; min-width: min(440px, 100%); }
.feature-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.feature-card {
  background: var(--card); border: 1px solid rgba(39,32,27,.08); border-radius: 18px;
  padding: 16px 20px; flex: 1 1 150px; transition: all .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(39,32,27,.1); }
.feature-card__icon { display: grid; place-items: center; color: var(--pink); font-size: 28px; }
.feature-card__title { font-weight: 700; margin-top: 6px; }
.feature-card__desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

/* ============ Galería ============ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.gallery-filter {
  border: 1.5px solid rgba(39,32,27,.15); background: none; color: var(--ink-soft);
  font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: all .2s ease;
}
.gallery-filter:hover { border-color: var(--pink); color: var(--pink); }
.gallery-filter.is-active { background: var(--pink); border-color: var(--pink); color: #fff; }
.gallery-card.is-hidden { display: none; }

/* Botón de cotizar en cada foto. Aparece siempre en táctil (donde no hay
   hover) y al pasar el mouse en escritorio, para no tapar la foto. */
.gallery-card__cta {
  margin-top: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  background: #fff;
  color: var(--pink-dark);
  font-family: inherit; font-size: 13.5px; font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.gallery-card__cta:hover { background: var(--pink); color: #fff; transform: translateY(-1px); }
.gallery-card__cta:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

/* Modelo elegido dentro del modal de cotización. */
/* Foto de referencia que sube el cliente. */
.contact-form .field--foto input[type="file"] {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px dashed rgba(39,32,27,.22);
  border-radius: 12px;
  background: #fff;
  font-family: inherit; font-size: 14px;
  cursor: pointer;
}
.contact-form .field--foto input[type="file"]:hover { border-color: var(--pink); }
/* El botón que trae el navegador es gris de sistema y desentona con el resto
   del formulario; se repinta en rosa para que no parezca de otra página. */
.contact-form .field--foto input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.contact-form .field--foto input[type="file"]::file-selector-button:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}
.foto-previa {
  margin-top: 8px;
  max-height: 150px; width: auto;
  border-radius: 12px;
  border: 1px solid rgba(39,32,27,.12);
}
.foto-nota { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }

.modelo-elegido {
  display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: center;
  margin: 18px 0 4px;
  padding: 12px;
  background: var(--pink-bg);
  border: 1px solid rgba(228,105,126,.3);
  border-radius: 16px;
}
.modelo-elegido__foto {
  width: 74px; height: 74px; object-fit: cover; border-radius: 12px;
}
.modelo-elegido__label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink-dark); font-weight: 700;
}
.modelo-elegido__nombre { font-weight: 700; margin-top: 3px; }
.modelo-elegido__quitar {
  margin-top: 4px; padding: 0;
  border: none; background: none;
  color: var(--ink-faint); font-family: inherit; font-size: 12.5px;
  text-decoration: underline; cursor: pointer;
}
.modelo-elegido__quitar:hover { color: var(--danger, #C0392B); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 32px; }
.gallery-card {
  background: var(--card); border-radius: 24px; padding: 10px 10px 16px;
  border: 1px solid rgba(39,32,27,.07); transition: all .3s; cursor: pointer;
}
.gallery-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 20px 44px rgba(39,32,27,.14); }
.gallery-card:nth-child(even):hover { transform: translateY(-8px) rotate(.5deg); }
.gallery-card__foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 8px 0; gap: 10px; }
.gallery-card__title { font-weight: 700; font-size: 16.5px; }
.gallery-card__desc { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.gallery-card__arrow { color: var(--pink); font-size: 20px; transition: transform .3s; flex: none; }
.galeria__cta { text-align: center; margin-top: 36px; }

/* ============ Promos ============ */
.promos { background: var(--pink-bg); position: relative; overflow: hidden; padding: 0; max-width: none; }
.promos__inner { max-width: 1200px; margin: 0 auto; padding: 90px 24px; position: relative; }
.promos__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.promos__head-copy { max-width: 560px; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; margin-top: 44px; }
.promo-card {
  background: var(--card); border-radius: 26px; padding: 12px;
  box-shadow: 0 10px 30px rgba(198,72,94,.1); transition: all .3s; position: relative;
}
.promo-card:hover { transform: translateY(-8px) rotate(-.6deg); box-shadow: 0 24px 50px rgba(198,72,94,.2); }
.promo-card:nth-child(2):hover { transform: translateY(-8px); }
.promo-card:nth-child(3):hover { transform: translateY(-8px) rotate(.6deg); }
.promo-card__badge {
  position: absolute; top: -14px; left: 24px; z-index: 2; background: var(--pink); color: #FFF8F0;
  font-weight: 700; font-size: 12px; letter-spacing: 2px; padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(198,72,94,.35);
}
.promos__note { text-align: center; font-size: 14px; color: var(--ink-soft); margin: 26px 0 0; }

/* ============ Sabores ============ */
.flavor-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; justify-content: center; }
.flavor-card {
  flex: 1 1 380px; min-width: min(380px, 100%); max-width: 540px; background: var(--card);
  border-radius: 26px; padding: 30px 30px 26px; border: 1px solid rgba(39,32,27,.07);
}
.flavor-card__head { display: flex; align-items: center; gap: 12px; }
.flavor-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--pink-bg); display: grid; place-items: center; color: var(--pink); font-size: 28px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--cream);
  border: 1px solid rgba(39,32,27,.1); border-radius: 999px; padding: 9px 16px;
  font-weight: 600; font-size: 14.5px; transition: all .2s; cursor: default;
}
.chip:hover { background: var(--pink-bg); border-color: var(--pink); transform: translateY(-2px); }
.chip__dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }

/* ============ Proceso ============ */
.proceso__inner { padding: 90px 24px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; margin-top: 50px; }
.step { text-align: center; padding: 26px 16px; border-radius: 22px; transition: all .3s; }
.step:hover { background: var(--pink-bg); transform: translateY(-6px); }
.step__icon {
  width: 64px; height: 64px; margin: 0 auto; border-radius: 50%; background: var(--pink);
  color: #FFF8F0; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(228,105,126,.35); font-size: 28px;
}
.step__label { font-family: var(--font-script); font-size: 20px; color: var(--pink-dark); margin-top: 14px; }
.step__title { font-weight: 700; font-size: 17px; margin-top: 2px; }
.step__desc { font-size: 14px; color: var(--ink-soft); margin-top: 6px; line-height: 1.55; }


/* ============ Delivery ============ */
.delivery__card {
  background: var(--card); border-radius: 32px; border: 1px solid rgba(39,32,27,.07);
  padding: 50px 40px; display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.delivery__copy { flex: 1 1 340px; min-width: min(340px, 100%); }
.callout { font-style: normal; color: var(--pink-dark); font-weight: 600; }
.zone-grid {
  flex: 1 1 400px; min-width: min(400px, 100%);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px;
}
.zone {
  background: var(--cream); border-radius: 16px; padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 14.5px; transition: all .2s;
}
.zone:hover { background: var(--pink-bg); transform: translateY(-3px); }
.zone__price { font-weight: 700; color: var(--pink-dark); }
.zone--dark { background: var(--ink); color: var(--cream); }
.zone--dark:hover { transform: translateY(-3px); }
.zone__price--light { color: var(--pink-light); }

/* ============ FAQ ============ */
.faq { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 38px; }
.accordion__item {
  background: var(--card); border: 1px solid rgba(39,32,27,.08); border-radius: 18px;
  overflow: hidden; transition: box-shadow .25s;
}
.accordion__item:hover { box-shadow: 0 8px 22px rgba(39,32,27,.08); }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; padding: 20px 24px; text-align: left;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink);
}
.accordion__chevron {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--pink-bg);
  color: var(--pink-dark); display: grid; place-items: center; font-size: 16px; transition: transform .3s;
}
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel-inner { overflow: hidden; }
.accordion__panel p { margin: 0; padding: 0 24px 20px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* ============ Contacto ============ */
.contacto { background: var(--contact-bg); position: relative; overflow: hidden; }
.contacto__inner {
  max-width: 1200px; margin: 0 auto; padding: 96px 24px;
  display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start; position: relative;
}
.contacto__copy { flex: 1 1 400px; min-width: min(400px, 100%); color: var(--cream); }
.script--contact { margin-top: 34px; transform: rotate(-2deg); display: inline-block; }

.contact-form {
  flex: 1 1 440px; min-width: min(440px, 100%); background: var(--card); border-radius: 28px;
  padding: 38px 34px; box-shadow: 0 30px 70px rgba(0,0,0,.3); display: flex; flex-direction: column; gap: 16px;
}
.contact-form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 13px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1.5px solid rgba(39,32,27,.15); border-radius: 12px; padding: 12px 14px;
  font-size: 14.5px; background: #FFFFFF; color: var(--ink);
}
.field textarea { resize: vertical; }
.form-note { margin: 0; text-align: center; font-size: 12.5px; color: var(--ink-faint); }

/* ============ WhatsApp bubble + quote modal ============ */
.whatsapp-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5); cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-bubble:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37,211,102,.6); }

.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(39,32,27,.55);
  opacity: 0; transition: opacity .25s ease;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  background: var(--card); border-radius: 28px; padding: 38px 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  transform: translateY(24px) scale(.97); opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: rgba(39,32,27,.08); color: var(--ink); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: rgba(39,32,27,.15); }
body.modal-open { overflow: hidden; }

/* ============ Footer ============ */
.footer { background: var(--footer-bg); color: var(--cream); }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 64px 24px 30px; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between; align-items: flex-start; }
.footer__brand { flex: 1 1 280px; min-width: min(280px, 100%); }
.footer__logo { width: 150px; height: 150px; border-radius: 24px; overflow: hidden; background: var(--cream); }
.footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__tagline { font-size: 15px; line-height: 1.7; color: rgba(248,242,231,.7); margin: 18px 0 0; max-width: 320px; }
.footer__col { flex: 0 1 auto; }
.footer__heading { font-weight: 700; font-size: 14px; letter-spacing: 2px; color: var(--pink-light); margin-bottom: 16px; }
.footer__col .footer__link,
.footer__col .footer__text { display: block; margin-top: 10px; }
.footer__col .footer__link:first-of-type,
.footer__col .footer__text:first-of-type { margin-top: 0; }
.footer__link { text-decoration: none; color: rgba(248,242,231,.75); font-size: 14.5px; transition: color .2s; }
.footer__link:hover { color: var(--pink-light); }
.footer__text { font-size: 14.5px; color: rgba(248,242,231,.75); }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(248,242,231,.1);
  display: grid; place-items: center; text-decoration: none; transition: all .25s;
}
.social-icon:hover { background: var(--pink); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(248,242,231,.12); margin-top: 44px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.footer__copy { font-size: 13px; color: rgba(248,242,231,.5); }
.script--footer { font-size: 21px; }
