/* ==========================================================================
   Mambo Italiano El Original — Nueva Gorgona, Panamá
   Concepto: funda de disco italo-americana (años 50, Dean Martin / Mambo).
   Awolkie Tech
   ========================================================================== */

:root {
  --papel: #FAF5EA;
  --papel-2: #F3ECDC;
  --vinilo: #191613;
  --verde: #23855A;
  --verde-osc: #17603F;
  --rojo: #C6402E;
  --rojo-osc: #A62F1F;
  --vino: #86333F;
  --hoja: #DFEAD8;

  --texto: #241F1B;
  --texto-suave: #5C534A;
  --linea: rgba(25, 22, 19, .12);

  --titular: 'Alfa Slab One', Georgia, serif;
  --script: 'Yesteryear', cursive;
  --cuerpo: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radio: 14px;
  --sombra: 0 10px 30px rgba(25, 22, 19, .10);
  --sombra-alta: 0 18px 48px rgba(25, 22, 19, .18);
  --nav-h: 68px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  background: var(--papel);
  color: var(--texto);
  font-family: var(--cuerpo);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--titular); font-weight: 400; line-height: 1.12; letter-spacing: .01em; margin: 0; }
h1 { font-size: clamp(2.6rem, 8vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); }

.script { font-family: var(--script); font-weight: 400; }

.contenedor { width: min(100% - 40px, var(--max)); margin-inline: auto; }

.seccion { padding: clamp(64px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.seccion--hoja { background: var(--hoja); }
.seccion--vinilo { background: var(--vinilo); color: #EFE7D9; }
.seccion--papel2 { background: var(--papel-2); }
.seccion > .contenedor { position: relative; z-index: 2; }

/* Grano de papel/vinilo: le quita el "plano" a las secciones de fondo sólido */
.seccion--hoja::before, .seccion--vinilo::before, .seccion--papel2::before, .pie::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .05;
}
.seccion--vinilo::before, .pie::before { opacity: .10; }

/* Surco de vinilo de fondo (mismo motivo del hero, en versión discreta) */
.seccion--vinilo::after, .seccion--papel2::after {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  width: 540px; height: 540px; border-radius: 50%;
  mask-image: radial-gradient(circle at center, #000 58%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, #000 58%, transparent 72%);
}
.seccion--vinilo::after {
  right: -190px; top: -170px; opacity: .18;
  background: repeating-radial-gradient(circle at center, rgba(127, 203, 164, .85) 0 1px, transparent 1px 14px);
}
.seccion--papel2::after {
  left: -200px; bottom: -190px; opacity: .10;
  background: repeating-radial-gradient(circle at center, rgba(35, 133, 90, .9) 0 1px, transparent 1px 15px);
}

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Encabezados de sección ------------------------------------- */
.cabecera-sec { text-align: center; margin-bottom: clamp(32px, 5vw, 54px); }
.cabecera-sec .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--verde); margin-bottom: 12px;
}
.seccion--vinilo .cabecera-sec .kicker { color: #7FCBA4; }
.cabecera-sec .kicker svg { width: 20px; height: 20px; color: currentColor; }
.cabecera-sec p { max-width: 62ch; margin: 14px auto 0; color: var(--texto-suave); }
.seccion--vinilo .cabecera-sec p { color: #C3B9AA; }

/* ---------- Botones ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--cuerpo); font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--rojo { background: var(--rojo); color: #fff; box-shadow: 0 8px 22px rgba(198, 64, 46, .32); }
.btn--rojo:hover { background: var(--rojo-osc); }
.btn--verde { background: var(--verde); color: #fff; box-shadow: 0 8px 22px rgba(35, 133, 90, .30); }
.btn--verde:hover { background: var(--verde-osc); }
.btn--linea { border-color: currentColor; color: var(--texto); }
.seccion--vinilo .btn--linea, .hero .btn--linea { color: #F3EADA; }
.btn--linea:hover { background: rgba(255, 255, 255, .10); }
.btn--claro { background: var(--papel); color: var(--vinilo); }

/* ---------- Cinta vino (etiqueta de promo) ------------------------------ */
.cinta {
  display: inline-block; position: relative;
  background: var(--vino); color: #FBEFE2;
  font-weight: 800; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 18px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
  padding-inline: 26px;
}

/* ---------- Navegación -------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250, 245, 234, .0);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
/* Al pasar el hero la barra se vuelve negro-vinilo con blur (Ronda 3) */
.nav.is-solid {
  background: rgba(25, 22, 19, .88);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(143, 211, 172, .20);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .30);
}
.nav__inner { width: min(100% - 32px, var(--max)); margin-inline: auto; display: flex; align-items: center; gap: 18px; }
.nav__marca { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.nav__marca img {
  width: 46px; height: 46px; object-fit: contain; padding: 4px;
  background: var(--papel); border-radius: 50%;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.nav__marca:hover img { transform: rotate(180deg); }
.nav__marca span {
  font-family: var(--titular); font-size: 1.02rem; color: #F3EADA;
  transition: color .25s ease; white-space: nowrap;
}

.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a {
  text-decoration: none; font-weight: 600; font-size: .93rem; color: #EDE3D3;
  position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--rojo); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__acciones { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; border: 1.5px solid rgba(237, 227, 211, .45); border-radius: 999px;
  overflow: hidden; background: rgba(0, 0, 0, .18);
}
.lang button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: var(--cuerpo); font-weight: 800; font-size: .76rem; letter-spacing: .08em;
  padding: 7px 11px; color: #EDE3D3; transition: background .2s, color .2s;
}
.lang button.is-on { background: var(--verde); color: #fff; }

.btn-carrito {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 999px; padding: 10px 16px;
  background: var(--rojo); color: #fff; font-family: var(--cuerpo); font-weight: 800; font-size: .84rem;
  transition: background .2s ease, transform .18s ease;
}
.btn-carrito:hover { background: var(--rojo-osc); transform: translateY(-1px); }
.btn-carrito svg { width: 17px; height: 17px; }
.btn-carrito__n {
  min-width: 20px; height: 20px; border-radius: 999px; background: #fff; color: var(--rojo);
  font-size: .72rem; font-weight: 800; display: grid; place-items: center; padding: 0 5px;
}

.nav__burger {
  display: none; appearance: none; border: 0; background: transparent; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; padding: 10px;
}
.nav__burger span { display: block; height: 2px; background: #EDE3D3; margin: 4px 0; border-radius: 2px; transition: background .25s; }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px; overflow: hidden;
  background: var(--vinilo);
  text-align: center; color: #F6EEDF;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; }
.hero__velo {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(25, 22, 19, .35) 0%, rgba(25, 22, 19, .72) 55%, rgba(25, 22, 19, .92) 100%),
    linear-gradient(180deg, rgba(25, 22, 19, .78) 0%, rgba(25, 22, 19, .30) 30%, rgba(25, 22, 19, .86) 100%);
}
.hero__surcos {
  position: absolute; width: 620px; height: 620px; right: -230px; bottom: -230px;
  border-radius: 50%; pointer-events: none; opacity: .30;
  background: repeating-radial-gradient(circle at center, rgba(127, 203, 164, .85) 0 1px, transparent 1px 13px);
  mask-image: radial-gradient(circle at center, #000 62%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, #000 62%, transparent 72%);
  animation: gira 90s linear infinite;
}
.hero__surcos--2 { left: -270px; top: -240px; right: auto; bottom: auto; width: 560px; height: 560px; opacity: .20; animation-duration: 130s; animation-direction: reverse; }
@keyframes gira { to { transform: rotate(360deg); } }

.hero__inner { position: relative; z-index: 2; width: min(100% - 40px, 900px); margin-inline: auto; }
/* El logo es line-art sobre papel: sobre el hero oscuro va dentro de un disco
   claro, como la etiqueta central de un vinilo. */
.hero__logo {
  width: clamp(150px, 21vw, 224px); aspect-ratio: 1; margin: 0 auto 20px;
  border-radius: 50%; background: var(--papel); display: grid; place-items: center;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .55), 0 0 0 8px rgba(250, 245, 234, .10);
}
.hero__logo img { width: 86%; height: auto; }

.pill-estado {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(250, 245, 234, .12); border: 1px solid rgba(250, 245, 234, .30);
  color: #F6EEDF; border-radius: 999px; padding: 8px 16px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(6px);
  margin-bottom: 18px;
}
.pill-estado .punto { width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .22); }
.pill-estado.is-cerrado .punto { background: #F0A93B; box-shadow: 0 0 0 4px rgba(240, 169, 59, .22); }

.hero h1 { text-shadow: 0 8px 34px rgba(0, 0, 0, .55); }
.hero h1 .l-verde { color: #6FCB9C; }
.hero__tagline {
  font-size: clamp(1.25rem, 3.4vw, 2.1rem); margin: 8px 0 0; color: #F0E6D5;
  font-family: var(--titular); letter-spacing: .02em;
}
.hero__tagline .script { font-size: 1.42em; color: #E5806E; margin-left: .12em; }

.hero__banner {
  margin: 26px auto 0; max-width: 620px;
  background: rgba(250, 245, 234, .09); border: 1px solid rgba(250, 245, 234, .22);
  border-radius: var(--radio); padding: 16px 20px 18px; backdrop-filter: blur(6px);
}
.hero__banner .cinta { margin-bottom: 10px; }
.hero__banner strong { display: block; font-family: var(--titular); font-size: 1.25rem; color: #FFF3E2; margin-bottom: 4px; }
.hero__banner p { margin: 0; font-size: .92rem; color: #D9CEBC; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* Sello de reputación real de Google (4.9 ★ · 361 reseñas) */
.sello-google {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 9px 18px; border-radius: 999px; text-decoration: none;
  background: rgba(250, 245, 234, .10); border: 1px solid rgba(250, 245, 234, .26);
  backdrop-filter: blur(6px); color: #F6EEDF;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sello-google:hover { background: rgba(250, 245, 234, .18); border-color: rgba(250, 245, 234, .5); transform: translateY(-2px); }
.sello-google__nota { font-family: var(--titular); font-size: 1.06rem; line-height: 1; color: #FFF3E2; }
.sello-google__estrellas { display: inline-flex; gap: 2px; }
.sello-google__estrellas svg { width: 15px; height: 15px; color: #F0A93B; }
.sello-google__txt { font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: #E4D9C7; }

.hero__abajo {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(246, 238, 223, .7); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__abajo i { display: block; width: 1px; height: 34px; background: linear-gradient(rgba(246,238,223,.7), transparent); }

/* ---------- La Semana Mambo -------------------------------------------- */
.semana {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.dia {
  position: relative; background: var(--papel); border: 1px solid var(--linea);
  border-radius: var(--radio); box-shadow: var(--sombra);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dia__cuerpo { position: relative; padding: 22px 48px 24px 20px; }
.dia:hover { transform: translateY(-6px); box-shadow: var(--sombra-alta); border-color: rgba(35, 133, 90, .38); }

.dia__foto {
  position: relative; height: 138px; overflow: hidden; background: var(--vinilo);
  border-radius: calc(var(--radio) - 1px) calc(var(--radio) - 1px) 0 0;
}
.dia__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.dia:hover .dia__foto img { transform: scale(1.07); }
.dia__foto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25, 22, 19, .06) 0%, rgba(25, 22, 19, .34) 100%);
}
.dia--foto .dia__cuerpo { padding-top: 18px; }
.dia__nombre {
  font-weight: 800; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--verde); margin-bottom: 10px;
}
.dia h3 { color: var(--vinilo); margin-bottom: 8px; }
.dia p { margin: 0; font-size: .9rem; color: var(--texto-suave); }
.dia__tag { margin-top: 12px; }

.dia.is-hoy {
  background: var(--vinilo); border-color: var(--vino); color: #F1E8D9;
  box-shadow: 0 16px 40px rgba(25, 22, 19, .28);
}
.dia.is-hoy h3 { color: #FFF3E2; }
.dia.is-hoy p { color: #C9BFAF; }
.dia.is-hoy .dia__nombre { color: #8FD3AC; }
.dia__hoy {
  position: absolute; top: -12px; left: 20px; z-index: 3;
  background: var(--rojo); color: #fff; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 13px; box-shadow: 0 6px 16px rgba(198, 64, 46, .35);
}

/* ---------- Menú -------------------------------------------------------- */
.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 4px 14px;
  scrollbar-width: none; justify-content: flex-start;
  min-width: 0; max-width: 100%;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button {
  appearance: none; border: 1.5px solid var(--linea); background: var(--papel); cursor: pointer;
  border-radius: 999px; padding: 10px 18px; white-space: nowrap;
  font-family: var(--cuerpo); font-weight: 700; font-size: .88rem; color: var(--texto-suave);
  transition: all .2s ease;
}
.menu-tabs button:hover { border-color: var(--verde); color: var(--verde); }
.menu-tabs button.is-on { background: var(--verde); border-color: var(--verde); color: #fff; }

.menu-barra {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 22px;
}
.tam-toggle { display: inline-flex; background: var(--papel); border: 1.5px solid var(--linea); border-radius: 999px; overflow: hidden; }
.tam-toggle button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  padding: 9px 18px; font-family: var(--cuerpo); font-weight: 800; font-size: .82rem; color: var(--texto-suave);
  transition: background .2s, color .2s;
}
.tam-toggle button.is-on { background: var(--rojo); color: #fff; }

.grupo { margin-bottom: 42px; }
.grupo__cab { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.grupo__cab svg { width: 26px; height: 26px; color: var(--verde); flex: none; }
.grupo__cab h3 { color: var(--vinilo); }
.grupo__nota {
  font-size: .86rem; color: var(--texto-suave); margin: 0 0 18px 38px; max-width: 70ch; font-style: italic;
}

.platos { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }
.plato {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--papel); border: 1px solid var(--linea); border-radius: var(--radio);
  padding: 16px 16px 16px 18px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.plato::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--verde);
  transform: scaleY(0); transform-origin: top; transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.plato:hover::before { transform: scaleY(1); }
.plato:hover { border-color: rgba(35, 133, 90, .45); box-shadow: var(--sombra); transform: translateY(-2px); }
.plato__txt { flex: 1; min-width: 0; }
.plato__nombre { font-weight: 800; font-size: 1rem; color: var(--vinilo); line-height: 1.3; }
.plato__desc { font-size: .84rem; color: var(--texto-suave); margin-top: 5px; line-height: 1.5; }
.plato__precio {
  font-family: var(--titular); font-size: 1.05rem; color: var(--rojo); white-space: nowrap; padding-top: 1px;
}
.plato__add {
  flex: none; width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--verde); color: #fff; font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center; transition: transform .18s ease, background .18s ease;
}
.plato__add:hover { background: var(--verde-osc); transform: scale(1.08); }
.plato__add:active { transform: scale(.94); }

.nota-impuesto {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--hoja); border: 1px dashed rgba(35, 133, 90, .45); border-radius: var(--radio);
  padding: 16px 18px; margin: 8px 0 30px; font-size: .88rem; color: #33513F;
}
.nota-impuesto svg { width: 20px; height: 20px; flex: none; color: var(--verde); margin-top: 2px; }

/* ---------- Horno de leña ---------------------------------------------- */
.horno { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
/* La foto va sobredimensionada dentro del marco para que el parallax
   (yPercent con ScrollTrigger, ver js/anim.js) nunca deje un borde vacío. */
.horno__foto { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--sombra-alta); aspect-ratio: 4 / 5; }
.horno__foto img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; }
.horno__foto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(25, 22, 19, .55) 100%);
}
.horno__sello {
  position: absolute; z-index: 2; left: 18px; bottom: 18px;
  background: var(--vino); color: #FBEFE2; border-radius: 999px; padding: 9px 16px;
  font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
}
.horno h2 { color: #FFF3E2; }
.horno p { color: #C9BFAF; }
.horno__lista { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.horno__lista li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; color: #DED3C2; }
.horno__lista svg { width: 20px; height: 20px; color: #7FCBA4; flex: none; margin-top: 2px; }

/* ---------- Galería: recorrido fotográfico ------------------------------ */
.recorrido { display: grid; gap: 14px; }

.recorrido__filtros { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.recorrido__filtros button {
  appearance: none; cursor: pointer; border: 1.5px solid rgba(25, 22, 19, .14);
  background: rgba(250, 245, 234, .72); border-radius: 999px; padding: 8px 16px;
  font-family: var(--cuerpo); font-weight: 700; font-size: .84rem; color: var(--texto-suave);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.recorrido__filtros button:hover { border-color: var(--verde); color: var(--verde); transform: translateY(-1px); }
.recorrido__filtros button.is-on { background: var(--verde); border-color: var(--verde); color: #fff; }

.recorrido__marco {
  position: relative; margin: 0; border-radius: 20px; overflow: hidden;
  background: var(--vinilo); box-shadow: var(--sombra-alta);
}
.recorrido__marco img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; cursor: zoom-in;
  animation: fotoEntra .45s ease;
}
@keyframes fotoEntra { from { opacity: .3; transform: scale(1.015); } to { opacity: 1; transform: none; } }

.recorrido__pie {
  position: absolute; inset: auto 0 0 0; padding: 52px 18px 15px;
  background: linear-gradient(transparent, rgba(25, 22, 19, .88));
  color: #F3EADA; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  pointer-events: none;
}
.recorrido__pie span { font-weight: 700; font-size: 1rem; }
.recorrido__pie small { font-size: .76rem; color: rgba(243, 234, 218, .72); white-space: nowrap; }

.recorrido__nav, .recorrido__zoom {
  position: absolute; border: 0; cursor: pointer; border-radius: 50%;
  background: rgba(25, 22, 19, .55); color: #F3EADA; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease;
}
.recorrido__nav { top: 50%; width: 46px; height: 46px; transform: translateY(-50%); }
.recorrido__nav svg { width: 22px; height: 22px; }
.recorrido__nav:hover, .recorrido__zoom:hover { background: var(--rojo); }
.recorrido__nav--prev { left: 14px; }
.recorrido__nav--next { right: 14px; }
.recorrido__nav--next svg { transform: rotate(180deg); }
.recorrido__zoom { top: 14px; right: 14px; width: 42px; height: 42px; }
.recorrido__zoom svg { width: 20px; height: 20px; }

.recorrido__ia {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(25, 22, 19, .58); color: #EFE7D9; border-radius: 999px; padding: 6px 13px;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.recorrido__thumbs { display: flex; gap: 9px; overflow-x: auto; padding: 2px 2px 8px; scrollbar-width: thin; }
.recorrido__thumb {
  flex: none; width: 108px; height: 76px; border-radius: 10px; overflow: hidden; padding: 0;
  border: 2px solid transparent; background: var(--vinilo); cursor: pointer; opacity: .6;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.recorrido__thumb img { width: 100%; height: 100%; object-fit: cover; }
.recorrido__thumb:hover { opacity: 1; transform: translateY(-2px); }
.recorrido__thumb.is-on { opacity: 1; border-color: var(--verde); box-shadow: 0 6px 16px rgba(35, 133, 90, .28); }

.nota-fotos { text-align: center; margin-top: 22px; font-size: .82rem; color: var(--texto-suave); max-width: 70ch; margin-inline: auto; }

/* ---------- Lightbox ---------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 95; padding: 24px;
  background: rgba(14, 12, 10, .94); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.is-on { opacity: 1; pointer-events: auto; }
.lightbox__marco { margin: 0; max-width: min(1080px, 88vw); }
.lightbox__marco img {
  max-height: 76vh; max-width: 100%; width: auto; margin-inline: auto;
  border-radius: 14px; box-shadow: 0 26px 64px rgba(0, 0, 0, .6);
}
.lightbox__marco figcaption { color: #E7DDCC; text-align: center; margin-top: 14px; font-size: .92rem; }
.lightbox__nav, .lightbox__x {
  flex: none; border: 0; cursor: pointer; border-radius: 50%;
  background: rgba(250, 245, 234, .12); color: #F3EADA; display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__nav { width: 50px; height: 50px; }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--next svg { transform: rotate(180deg); }
.lightbox__nav:hover, .lightbox__x:hover { background: var(--rojo); }
.lightbox__x { position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }

/* ---------- Reseñas ----------------------------------------------------- */
.resenas { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.resena {
  position: relative; background: var(--papel); color: var(--texto);
  border-radius: var(--radio); border-top: 4px solid var(--vino);
  padding: 26px 24px 20px; box-shadow: 0 16px 40px rgba(0, 0, 0, .34);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
  will-change: transform;
}
.resena:hover { box-shadow: 0 24px 54px rgba(0, 0, 0, .45); }
.resena__comillas { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; color: rgba(134, 51, 63, .16); }
.resena__estrellas { display: flex; gap: 3px; margin-bottom: 13px; }
.resena__estrellas svg { width: 16px; height: 16px; color: #F0A93B; }
.resena blockquote { margin: 0; font-size: .95rem; line-height: 1.62; }
.resena footer { margin-top: 16px; padding-top: 13px; border-top: 1px dashed var(--linea); }
.resena footer strong { display: block; font-weight: 800; font-size: .95rem; color: var(--vinilo); }
.resena footer small { color: var(--texto-suave); font-size: .8rem; }
.resenas__cta { text-align: center; margin-top: 32px; }

/* ---------- Preguntas frecuentes ---------------------------------------- */
.faq { max-width: 830px; margin-inline: auto; display: grid; gap: 10px; }
.faq__item {
  background: var(--papel); border: 1px solid var(--linea); border-radius: var(--radio);
  box-shadow: var(--sombra); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item:hover { border-color: rgba(35, 133, 90, .35); }
.faq__item[open] { border-color: rgba(35, 133, 90, .45); box-shadow: var(--sombra-alta); }
.faq__item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 18px 54px 18px 20px; font-weight: 800; font-size: 1rem; color: var(--vinilo);
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--verde); }
.faq__item summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px; margin-top: -8px;
  border-right: 2.5px solid var(--verde); border-bottom: 2.5px solid var(--verde);
  transform: rotate(45deg); transition: transform .25s ease, margin-top .25s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__resp { padding: 0 20px 20px; color: var(--texto-suave); font-size: .94rem; }
.faq__resp p { margin: 0; }
.faq__resp a { color: var(--verde-osc); font-weight: 700; }

/* ---------- Ubicación --------------------------------------------------- */
.ubica { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.datos { display: grid; gap: 20px; }
.dato { display: flex; gap: 14px; align-items: flex-start; }
.dato__ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--hoja);
  display: grid; place-items: center; color: var(--verde);
}
.dato__ico svg { width: 21px; height: 21px; }
.dato h3 { font-family: var(--cuerpo); font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--texto-suave); margin-bottom: 4px; }
.dato p { margin: 0; font-size: 1.02rem; color: var(--vinilo); font-weight: 600; }
.dato a { color: var(--vinilo); text-decoration: none; border-bottom: 2px solid rgba(35, 133, 90, .35); }
.dato a:hover { border-bottom-color: var(--verde); }
.dato small { display: block; color: var(--texto-suave); font-weight: 400; font-size: .85rem; margin-top: 3px; }

.ubica__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.mapa { border-radius: 20px; overflow: hidden; box-shadow: var(--sombra); border: 1px solid var(--linea); background: var(--hoja); }
.mapa iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ------------------------------------------------------ */
.pie { background: var(--vinilo); color: #CFC4B4; padding: 64px 0 28px; position: relative; overflow: hidden; }
.pie__vine { position: absolute; top: -20px; right: 6%; width: 46px; height: 250px; color: rgba(143, 211, 172, .22); }
.pie__vine--izq { right: auto; left: 6%; transform: scaleX(-1); }
.pie__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; position: relative; z-index: 2; }
.pie__logo { width: 168px; margin-bottom: 16px; background: var(--papel); border-radius: 18px; padding: 12px 14px; }
.pie h4 { font-family: var(--titular); font-weight: 400; font-size: 1rem; color: #F1E8D9; margin: 0 0 14px; }
.pie ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.pie a { color: #CFC4B4; text-decoration: none; font-size: .92rem; transition: color .2s; }
.pie a:hover { color: #8FD3AC; }
.pie__redes { display: flex; gap: 10px; margin-top: 16px; }
.pie__redes a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(207, 196, 180, .28); transition: background .2s, border-color .2s, color .2s;
}
.pie__redes a:hover { background: var(--verde); border-color: var(--verde); color: #fff; }
.pie__redes svg { width: 18px; height: 18px; }
.pie__base {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(207, 196, 180, .18);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .82rem; color: #9C9285; position: relative; z-index: 2;
}

/* ---------- WhatsApp flotante ------------------------------------------ */
.wa-flota {
  position: fixed; right: 18px; bottom: 18px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  transition: transform .2s ease;
}
.wa-flota:hover { transform: scale(1.08); }
.wa-flota svg { width: 30px; height: 30px; }

/* ---------- Carrito ----------------------------------------------------- */
.velo {
  position: fixed; inset: 0; z-index: 70; background: rgba(25, 22, 19, .55);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; backdrop-filter: blur(2px);
}
.velo.is-on { opacity: 1; pointer-events: auto; }

.carrito {
  position: fixed; z-index: 80; top: 0; right: 0; height: 100dvh; width: min(100%, 420px);
  background: var(--papel); box-shadow: -18px 0 46px rgba(25, 22, 19, .28);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.3,.8,.3,1);
  display: flex; flex-direction: column;
}
.carrito.is-on { transform: translateX(0); }
.carrito__cab {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; border-bottom: 1px solid var(--linea);
}
.carrito__cab h3 { font-size: 1.3rem; color: var(--vinilo); }
.carrito__x {
  appearance: none; border: 0; background: transparent; cursor: pointer; font-size: 1.7rem;
  line-height: 1; color: var(--texto-suave); width: 36px; height: 36px; border-radius: 50%;
}
.carrito__x:hover { background: var(--hoja); color: var(--vinilo); }
.carrito__cuerpo { flex: 1; overflow-y: auto; padding: 18px 22px; }
.carrito__vacio { text-align: center; color: var(--texto-suave); padding: 50px 10px; }
.carrito__vacio svg { width: 54px; height: 54px; color: rgba(35, 133, 90, .35); margin: 0 auto 14px; }

.ci { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px dashed var(--linea); }
.ci__txt { flex: 1; min-width: 0; }
.ci__nombre { font-weight: 700; font-size: .95rem; color: var(--vinilo); line-height: 1.3; }
.ci__meta { font-size: .8rem; color: var(--texto-suave); margin-top: 2px; }
.ci__qty { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.ci__qty button {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--linea); background: var(--papel);
  cursor: pointer; font-size: 1rem; line-height: 1; color: var(--texto); display: grid; place-items: center;
}
.ci__qty button:hover { background: var(--hoja); border-color: var(--verde); }
.ci__qty span { min-width: 22px; text-align: center; font-weight: 800; font-size: .9rem; }
.ci__precio { font-family: var(--titular); color: var(--rojo); font-size: .98rem; white-space: nowrap; }

.carrito__pie { border-top: 1px solid var(--linea); padding: 18px 22px 22px; background: var(--papel-2); }
.carrito__campos { display: grid; gap: 9px; margin-bottom: 14px; }
.carrito__campos input, .carrito__campos textarea {
  width: 100%; border: 1px solid var(--linea); border-radius: 10px; padding: 11px 13px;
  font-family: var(--cuerpo); font-size: .92rem; background: var(--papel); color: var(--texto); resize: vertical;
}
.carrito__campos input:focus, .carrito__campos textarea:focus { outline: 2px solid rgba(35, 133, 90, .35); border-color: var(--verde); }
.carrito__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.carrito__total span { font-weight: 700; color: var(--texto-suave); }
.carrito__total strong { font-family: var(--titular); font-size: 1.6rem; color: var(--rojo); }
.carrito__nota { font-size: .78rem; color: var(--texto-suave); margin: 0 0 14px; }
.carrito__pie .btn { width: 100%; }

/* ---------- Reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__surcos { animation: none; }
  .recorrido__marco img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Toast ------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); z-index: 90;
  background: var(--vinilo); color: #F3EADA; border-radius: 999px; padding: 12px 22px;
  font-weight: 700; font-size: .88rem; box-shadow: var(--sombra-alta);
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 980px) {
  .horno { grid-template-columns: 1fr; }
  .horno__foto { max-width: 460px; margin-inline: auto; }
  .ubica { grid-template-columns: 1fr; }
  .pie__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(250, 245, 234, .985); backdrop-filter: blur(12px);
    padding: 10px 20px 22px; gap: 0; border-bottom: 1px solid var(--linea);
    box-shadow: 0 16px 30px rgba(25, 22, 19, .12);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { color: var(--texto); padding: 14px 4px; border-bottom: 1px solid var(--linea); font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__burger { display: block; order: 3; }
  .nav__marca span { display: none; }
  .btn-carrito span.txt { display: none; }
  .btn-carrito { padding: 10px 12px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .platos { grid-template-columns: 1fr; }
  .recorrido__marco img { aspect-ratio: 4 / 3; }
  .recorrido__nav { width: 40px; height: 40px; }
  .recorrido__nav--prev { left: 9px; }
  .recorrido__nav--next { right: 9px; }
  .recorrido__zoom { display: none; }
  .recorrido__pie { padding: 44px 14px 12px; flex-direction: column; align-items: flex-start; gap: 3px; }
  .recorrido__pie span { font-size: .9rem; }
  .recorrido__thumb { width: 88px; height: 64px; }
  .lightbox { padding: 14px; gap: 6px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__marco { max-width: 100%; }
  .lightbox__marco img { max-height: 66vh; }
  .resena { padding: 22px 20px 18px; }
  .faq__item summary { font-size: .95rem; padding: 16px 48px 16px 16px; }
  .faq__resp { padding: 0 16px 18px; }
  .sello-google { flex-wrap: wrap; justify-content: center; }
  .semana { grid-template-columns: 1fr; }
  .pie__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: 92svh; }
  .hero__abajo { display: none; }
  .mapa iframe { height: 320px; }
  .grupo__nota { margin-left: 0; }
  .menu-barra { flex-direction: column; align-items: stretch; }
  .tam-toggle { align-self: flex-start; }
}

/* ==========================================================================
   RONDA 3 — estética, movimiento y 3D (2026-08-14)
   Todo lo que se anima con GSAP arranca su estado inicial DESDE JS, nunca
   desde aquí: si el CDN de GSAP no carga, el sitio se ve completo igual.
   ========================================================================== */

/* ---------- Hero: la tornamesa Mambo ----------------------------------- */
.tocadiscos {
  position: absolute; z-index: 1; pointer-events: none;
  right: -9%; top: 50%; transform: translateY(-50%);
  width: clamp(330px, 46vw, 620px); aspect-ratio: 1;
  opacity: .92;
  /* el borde izquierdo se difumina para no pelear con el texto centrado */
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}
.tocadiscos__disco { position: absolute; inset: 0; border-radius: 50%; }
.tocadiscos__plato {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(127, 203, 164, .40) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .14), transparent 52%),
    radial-gradient(circle at center, #14110f 0%, #0c0a09 100%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .62), inset 0 0 70px rgba(0, 0, 0, .85);
  animation: gira 22s linear infinite;
}
.tocadiscos__etiqueta {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, #2E9E6B 0%, #17603F 72%);
  box-shadow: inset 0 0 0 2px rgba(250, 245, 234, .28), 0 0 26px rgba(0, 0, 0, .55);
  display: grid; place-items: center; text-align: center; line-height: 1.05;
  color: #F7EFE0; padding: 6%;
}
.tocadiscos__etiqueta b {
  display: block; font-family: var(--titular); font-weight: 400;
  font-size: clamp(.6rem, 1.55vw, 1.05rem); letter-spacing: .01em;
}
.tocadiscos__etiqueta b i { font-style: normal; color: #F3B7AA; }
.tocadiscos__etiqueta small {
  display: block; margin-top: .35em; font-size: clamp(.4rem, .82vw, .56rem);
  letter-spacing: .24em; text-transform: uppercase; color: rgba(247, 239, 224, .72);
}
.tocadiscos__eje {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 3.4%; aspect-ratio: 1; border-radius: 50%;
  background: var(--papel); box-shadow: 0 0 0 2px rgba(0, 0, 0, .35);
}
.tocadiscos__brazo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .55));
}

/* ---------- La Semana: singles de 45 rpm -------------------------------- */
.dia__disco {
  position: absolute; z-index: 3; right: 12px; top: 12px;
  width: 46px; height: 46px; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(250, 245, 234, .22) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 34% 26%, #2b2521 0%, #131110 70%);
  box-shadow: 0 6px 14px rgba(25, 22, 19, .38), inset 0 0 0 1px rgba(250, 245, 234, .14);
  display: grid; place-items: center;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}
.dia__disco b {
  width: 58%; height: 58%; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #2E9E6B, #17603F 74%);
  color: #F7EFE0; font-size: .48rem; font-weight: 800; letter-spacing: .04em;
  display: grid; place-items: center; text-transform: uppercase;
}
.dia:hover .dia__disco { transform: rotate(180deg); }
.dia.is-hoy .dia__disco b { background: radial-gradient(circle at 50% 30%, #D9503C, var(--rojo-osc) 74%); }

/* El día de hoy late en rojo-pomodoro */
@keyframes pulsoHoy {
  0%, 100% { box-shadow: 0 16px 40px rgba(25, 22, 19, .28), 0 0 0 0 rgba(198, 64, 46, .55); }
  55%      { box-shadow: 0 16px 40px rgba(25, 22, 19, .28), 0 0 0 9px rgba(198, 64, 46, 0); }
}
.dia.is-hoy { animation: pulsoHoy 2.6s ease-out infinite; }

/* ---------- Menú: subrayado deslizante + hover vino --------------------- */
.menu-tabs { position: relative; }
.menu-tabs__linea {
  position: absolute; bottom: 5px; left: 0; height: 3px; width: 0;
  border-radius: 999px; background: var(--rojo);
  box-shadow: 0 2px 8px rgba(198, 64, 46, .45);
  pointer-events: none; opacity: 0;
}
.plato:hover { box-shadow: 0 14px 32px rgba(134, 51, 63, .22); }

/* ---------- Horno: chispas y llama -------------------------------------- */
.horno__chispas { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.horno__sello { z-index: 4; }
@keyframes llamaFlicker {
  0%, 100% { opacity: 1;   transform: scale(1) rotate(0deg); }
  22%      { opacity: .74; transform: scale(.95) rotate(-3deg); }
  48%      { opacity: 1;   transform: scale(1.06) rotate(1deg); }
  71%      { opacity: .84; transform: scale(.98) rotate(3deg); }
}
.llama-flicker {
  animation: llamaFlicker 2.4s ease-in-out infinite;
  transform-origin: 50% 88%;
  filter: drop-shadow(0 0 7px rgba(240, 169, 59, .6));
}

/* ---------- Galería: lightbox con View Transitions ---------------------- */
::view-transition-old(foto-galeria),
::view-transition-new(foto-galeria) {
  animation-duration: .38s;
  animation-timing-function: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reseñas: marcador 4.9 --------------------------------------- */
.resenas__marcador {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 34px; padding: 18px 26px; width: fit-content;
  border-radius: 999px;
  background: rgba(250, 245, 234, .07); border: 1px solid rgba(250, 245, 234, .20);
  backdrop-filter: blur(6px);
}
.resenas__nota {
  font-family: var(--titular); font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1;
  color: #FFF3E2; font-variant-numeric: tabular-nums;
}
.resenas__estrellas { display: inline-flex; gap: 5px; }
.resenas__estrellas svg { width: 24px; height: 24px; color: #F0A93B; }
.resenas__cuenta { font-size: .88rem; font-weight: 700; letter-spacing: .04em; color: #C3B9AA; }

/* ---------- FAQ: apertura nativa de <details> (CSS 2026, sin JS) -------- */
:root { interpolate-size: allow-keywords; }
.faq__item::details-content {
  block-size: 0; overflow: hidden;
  transition: block-size .34s cubic-bezier(.2, .7, .2, 1), content-visibility .34s;
  transition-behavior: allow-discrete;
}
.faq__item[open]::details-content { block-size: auto; }

/* ---------- El vinilo 3D ------------------------------------------------ */
.vinilo3d { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.vinilo3d__caja {
  position: relative; aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--linea); box-shadow: var(--sombra-alta);
  background:
    repeating-radial-gradient(circle at 50% 48%, rgba(35, 133, 90, .13) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 50% 42%, #FFFDF7 0%, var(--papel) 58%, var(--papel-2) 100%);
}
.vinilo3d__caja model-viewer { width: 100%; height: 100%; --poster-color: transparent; }
.vinilo3d__espera {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  align-content: center; text-align: center; color: var(--texto-suave); padding: 24px;
}
.vinilo3d__espera img { width: 108px; opacity: .5; }
.vinilo3d__espera span { font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.vinilo3d__pista {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  background: var(--hoja); border: 1px dashed rgba(35, 133, 90, .45); border-radius: 999px;
  padding: 9px 16px; font-size: .84rem; font-weight: 700; color: #33513F;
}
.vinilo3d__pista svg { width: 17px; height: 17px; color: var(--verde); }

/* ---------- Footer: enredaderas dibujándose ----------------------------- */
.pie__vine { will-change: stroke-dashoffset; }

/* ---------- prefers-reduced-motion (extiende el bloque de arriba) ------- */
@media (prefers-reduced-motion: reduce) {
  .tocadiscos__plato,
  .dia.is-hoy,
  .llama-flicker { animation: none !important; }
  .llama-flicker { filter: none; }
  .tocadiscos { opacity: .55; }
  .dia:hover .dia__disco { transform: none; }
  .faq__item::details-content { transition: none; }
  ::view-transition-old(foto-galeria),
  ::view-transition-new(foto-galeria) { animation: none; }
}

/* ---------- Responsive de lo nuevo -------------------------------------- */
@media (max-width: 980px) {
  .vinilo3d { grid-template-columns: 1fr; }
  .vinilo3d__caja { max-width: 460px; margin-inline: auto; width: 100%; }
}

@media (max-width: 700px) {
  .tocadiscos {
    right: -30%; top: auto; bottom: -6%; transform: none;
    width: min(84vw, 430px); opacity: .45;
    mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  }
  .dia__disco { width: 40px; height: 40px; right: 10px; top: 10px; }
  .resenas__marcador { padding: 14px 18px; gap: 10px; }
  .resenas__estrellas svg { width: 19px; height: 19px; }
}
