/* =========================================================
   NANDO PIZZA · STYLES.CSS
   Versión limpia y actualizada
   ========================================================= */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;

  --verde: #154d28;
  --verde-l: #1e6e38;
  --verde-xl: #26a050;

  --rojo: #df0209;
  --rojo-l: #ff1a22;

  --crema: #e8ddd0;
  --crema2: #c8b89a;
  --blanco: #f5f0eb;
  --gris: #888;
  --gris2: #555;

  --border: rgba(255, 255, 255, 0.07);

  --font-disp: "Titan One", Impact, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-script: "Biro Script Plus", "Brush Script MT", cursive;

  --r: 8px;
  --r2: 16px;

  --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow2: 0 12px 60px rgba(0, 0, 0, 0.7);
}

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

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

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--crema);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--verde-xl);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

/* ─── ESTRUCTURA GENERAL ─────────────────────────────── */
.container {
  width: min(100% - 56px, 1080px);
  margin-inline: auto;
}

section {
  padding: 100px 0;
  scroll-margin-top: 84px;
}

section.tight {
  padding: 70px 0;
}

.label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-xl);
}

h2.display {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--blanco);
}

h2.display em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--crema2);
}

.divider {
  width: 36px;
  height: 1px;
  margin: 20px 0 28px;
  background: var(--verde-xl);
}

.divider--center {
  margin-inline: auto;
}

.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--crema2);
}

/* ─── BOTONES ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--blanco);
  background: var(--verde);
}

.btn--primary:hover {
  background: var(--verde-l);
  box-shadow: 0 4px 20px rgba(21, 77, 40, 0.4);
}

.btn--ghost {
  color: var(--crema);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.78rem;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill--verde {
  color: #4ecf7a;
  border: 1px solid rgba(78, 207, 122, 0.2);
  background: rgba(21, 77, 40, 0.3);
}

/* ─── SPLASH ─────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-wordmark {
  font-family: var(--font-disp);
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  color: var(--blanco);
}

.splash-wordmark span {
  color: var(--rojo);
}

.splash-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--verde), var(--rojo));
  animation: splashLine 2.4s ease forwards;
}

.splash-sub {
  opacity: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris);
  animation: fadeUp 0.5s 0.5s both;
}

@keyframes splashLine {
  to {
    width: 160px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── NAVEGACIÓN ─────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 800;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    transform 0.3s ease;
}

#nav.scrolled {
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
}

#nav.up {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 60px, 1200px);
  margin-inline: auto;
  padding: 12px 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-nav {
  width: 110px;
  height: auto;
  transition: transform 0.2s ease;
}

.logo-nav:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.55);
  transition: color 0.2s ease;
}

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

.nav-right {
  display: flex;
  align-items: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--crema);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 799;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(13, 13, 13, 0.98);
}

#mob-menu.open {
  display: flex;
}

#mob-menu a {
  font-family: var(--font-disp);
  font-size: 2rem;
  color: var(--crema);
  transition: color 0.2s ease;
}

#mob-menu a:hover {
  color: var(--blanco);
}

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.15) 0%,
      rgba(13, 13, 13, 0.15) 40%,
      rgba(13, 13, 13, 0.7) 70%,
      rgba(13, 13, 13, 0.95) 100%
    ),
    url("assets/images/hero.webp") 65% center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 48px;
}

.hero-eyebrow {
  margin-bottom: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde-xl);
  animation: fadeUp 0.7s 0.2s both;
}

.hero-title {
  margin-bottom: 24px;
  font-family: var(--font-disp);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--blanco);
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.7s 0.35s both;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232, 221, 208, 0.75);
  animation: fadeUp 0.7s 0.5s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.7s 0.65s both;
}

/* ─── NOSOTROS ───────────────────────────────────────── */
#about {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}

.about-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  box-shadow: var(--shadow2);
  -webkit-mask-image:
    radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 55%,
      transparent 100%
    );
  mask-image:
    radial-gradient(
      ellipse 90% 90% at 50% 50%,
      #000 55%,
      transparent 100%
    );
}

.about-badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--bg3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about-badge .num {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--verde-xl);
}

.about-badge .lbl {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--border);
}

.stat {
  padding: 20px;
  background: var(--bg3);
}

.stat .n {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--blanco);
}

.stat .l {
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gris);
}

/* ─── GALERÍA ────────────────────────────────────────── */
#galeria {
  padding: 80px 0;
  background: var(--bg);
}

.gallery-strip {
  margin-top: 48px;
  overflow: hidden;
}

.gallery-row {
  display: flex;
  gap: 16px;
  width: max-content;
}

.gallery-row--1 {
  animation: galleryMove 35s linear infinite;
}

.gallery-row--2 {
  margin-top: 16px;
  animation: galleryMove 28s linear infinite reverse;
}

@keyframes galleryMove {
  to {
    transform: translateX(-50%);
  }
}

.g-card {
  flex-shrink: 0;
  width: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--bg3);
}

.g-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-card:hover img {
  transform: scale(1.04);
}

.g-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  text-align: center;
}

.g-card-label .name {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--crema);
}

.gallery-strip:hover .gallery-row {
  animation-play-state: paused;
}

/* ─── CARTA ──────────────────────────────────────────── */
#menu {
  background: var(--bg2);
}

.menu-header {
  margin-bottom: 48px;
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.tab {
  margin-bottom: -1px;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tab:hover {
  color: var(--crema);
}

.tab.active {
  color: var(--blanco);
  border-color: var(--verde-xl);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.menu-card {
  margin-bottom: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--bg3);
}

.menu-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blanco);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.menu-table tr:last-child {
  border-bottom: 0;
}

.menu-table tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.menu-table td {
  padding: 14px 10px;
  vertical-align: middle;
}

.td-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--crema);
}

.td-desc {
  display: block;
  margin-top: 3px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--gris);
}

.td-price {
  text-align: right;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: var(--crema2);
}

.sin-gluten-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(78, 207, 122, 0.15);
  border-radius: var(--r);
  background: rgba(21, 77, 40, 0.12);
}

.sin-gluten-note p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--crema2);
}

.sin-gluten-badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: var(--r);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanco);
  background: var(--verde);
}

.salsas-wrap {
  margin-top: 20px;
}

.salsas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.salsa-item {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.78rem;
  text-align: center;
  color: var(--crema2);
  background: rgba(255, 255, 255, 0.03);
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ─── RESEÑAS ────────────────────────────────────────── */
#resenas {
  background: var(--bg);
}

.reviews-header {
  margin-bottom: 56px;
  text-align: center;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.rating-big {
  font-family: var(--font-disp);
  font-size: 4rem;
  line-height: 1;
  color: var(--blanco);
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
}

.rating-meta {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--gris);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--bg3);
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 16px;
  opacity: 0.08;
  font-family: var(--font-disp);
  font-size: 6rem;
  line-height: 1;
  color: var(--verde);
}

.rv-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rv-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--blanco);
}

.rv-avatar--green { background: #2e7d32; }
.rv-avatar--blue { background: #1565c0; }
.rv-avatar--red { background: #c62828; }
.rv-avatar--purple { background: #6a1599; }
.rv-avatar--orange { background: #e65100; }

.rv-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--crema);
}

.rv-meta {
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--gris);
}

.review-stars {
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.rv-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--crema2);
}

.rv-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.rv-score {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-xl);
  background: rgba(21, 77, 40, 0.2);
}

.review-card--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  border-color: transparent;
  background: var(--verde);
}

.review-card--cta::before {
  display: none;
}

.review-card--cta h3 {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  color: var(--blanco);
}

.review-card--cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── HORARIOS ───────────────────────────────────────── */
#horario {
  background: var(--bg2);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 48px;
}

.day-list {
  display: flex;
  flex-direction: column;
}

.day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.day-row:last-child {
  border-bottom: 0;
}

.day-name {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  color: var(--crema);
}

.day-time {
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--crema2);
}

.day-time.closed {
  font-style: italic;
  color: var(--gris2);
}

.day-row.today .day-name,
.day-row.today .day-time {
  color: #4ecf7a;
}

.hours-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block h3 {
  margin-bottom: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}

.contact-block a {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.15rem;
  color: var(--crema);
  transition: color 0.2s ease;
}

.contact-block a:hover {
  color: var(--blanco);
}

/* ─── RESERVA ────────────────────────────────────────── */
#contacto {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-extra {
  margin-top: 32px;
}

.contact-alternative {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-alternative span,
.contact-social-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
}

.contact-alternative a {
  width: fit-content;
  font-size: 1rem;
  font-weight: 800;
  color: var(--crema);
  transition: color 0.2s ease;
}

.contact-alternative a:hover {
  color: var(--verde-xl);
}

.contact-social-block {
  margin-top: 24px;
}

.contact-social-title {
  margin-bottom: 10px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-wrap {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--bg3);
}

.form-title {
  margin-bottom: 28px;
  font-family: var(--font-disp);
  font-size: 1.4rem;
  color: var(--blanco);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  outline: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--crema);
  background: var(--bg2);
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--verde-xl);
  box-shadow: 0 0 0 3px rgba(38, 160, 80, 0.12);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field select option {
  background: var(--bg2);
}

.field-hint {
  margin-top: 6px;
  font-size: 0.72rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--gris);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 12px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--gris);
}

/* ─── FOOTER ─────────────────────────────────────────── */
#footer {
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
  background: #080808;
}

.footer-wordmark {
  margin-bottom: 56px;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font-disp);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-heading {
  margin-bottom: 18px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}

.footer-heading--spaced {
  margin-top: 24px;
}

.fc p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(200, 184, 154, 0.5);
}

.fc a {
  font-size: 0.88rem;
  color: rgba(200, 184, 154, 0.55);
  transition: color 0.2s ease;
}

.fc a:hover {
  color: var(--crema);
}

.fc-link {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(219, 204, 190, 0.55);
}

.footer-map {
  width: 100%;
  height: 200px;
  margin-top: 14px;
  border: 0;
  border-radius: var(--r);
  filter: grayscale(1) brightness(0.4) contrast(1.2);
  transition: filter 0.3s ease;
}

.footer-map:hover {
  filter: grayscale(0.3) brightness(0.7);
}

/* Uber Eats, Glovo, WhatsApp y teléfono */
.fc-simple-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.fc-simple-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 0.9rem !important;
  font-weight: 500;
  line-height: 1.2 !important;
  color: rgba(219, 204, 190, 0.65) !important;
  transition: color 0.2s ease;
}

.fc-simple-link:hover {
  color: var(--crema) !important;
}

.footer-service-icon,
.fc-simple-link > img {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 1;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  min-width: 24px;
  font-size: 1.1rem;
  line-height: 1;
}

/* Horario footer */
.fc-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.fc-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(219, 204, 190, 0.05);
  font-size: 0.8rem;
  color: rgba(219, 204, 190, 0.55);
}

.fc-hour-row:last-child {
  border-bottom: 0;
}

.fc-closed {
  opacity: 0.35;
  font-style: italic;
}

/* Redes sociales */
.fc-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.fc-social {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 204, 190, 0.14);
  border-radius: 50%;
  background: transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.fc-social img {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  object-fit: contain;
  opacity: 1;
}

.fc-social:hover {
  transform: translateY(-2px);
  border-color: var(--verde-xl);
  background: rgba(38, 160, 80, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--gris2);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a,
.back-top {
  color: var(--gris2);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover,
.back-top:hover {
  color: var(--crema);
}

/* ─── WHATSAPP FLOTANTE ─────────────────────────────── */
#wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1da851;
  box-shadow: 0 4px 24px rgba(29, 168, 81, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(29, 168, 81, 0.55);
}

#wa-fab img {
  width: 26px;
  height: 26px;
}

/* ─── ANIMACIONES ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal[data-d="1"] {
  transition-delay: 0.1s;
}

.reveal[data-d="2"] {
  transition-delay: 0.2s;
}

.reveal[data-d="3"] {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .logo-nav {
    width: 96px;
  }

  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap {
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .about-img {
    aspect-ratio: 16 / 9;
  }

  .about-badge {
    right: 8px;
    bottom: -12px;
  }

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

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


@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }

  .container {
    width: min(100% - 32px, 1080px);
  }

  .nav-inner {
    width: min(100% - 32px, 1200px);
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  .hero-ctas {
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap,
  .menu-card {
    padding: 22px;
  }

  .menu-table td {
    padding: 12px 6px;
  }

  .td-price {
    font-size: 0.88rem;
  }

  .sin-gluten-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-social-links .btn {
    flex: 1 1 auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .fc-hour-row {
    align-items: flex-start;
  }

  #wa-fab {
    right: 16px;
    bottom: 16px;
  }
}

/* ─── REDUCIR MOVIMIENTO ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* =========================================================
   CARTA · MOSTRAR / OCULTAR PIZZAS
   Bloque único y definitivo
   ========================================================= */

/* Estado cerrado: en escritorio se ven solo las primeras 8 */
tbody.pizza-list:not(.expanded) > tr:nth-child(n + 9) {
  display: none !important;
}

/* Estado abierto: se muestran todas */
tbody.pizza-list.expanded > tr {
  display: table-row !important;
}

/* Contenedor */
.pizza-toggle-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 24px 0 8px;
}

/* Botón */
.pizza-toggle,
#pizza-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  border: 1px solid rgba(38, 160, 80, 0.45) !important;
  border-radius: 999px;
  background: rgba(21, 77, 40, 0.18) !important;
  color: #4ecf7a !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.pizza-toggle:hover,
#pizza-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--verde-xl) !important;
  background: rgba(21, 77, 40, 0.35) !important;
  color: var(--blanco) !important;
}

.pizza-toggle:focus-visible,
#pizza-toggle:focus-visible {
  outline: 2px solid var(--verde-xl);
  outline-offset: 3px;
}

/* Móvil: cerrado = primeras 6 */
@media (max-width: 600px) {
  tbody.pizza-list:not(.expanded) > tr:nth-child(n + 7) {
    display: none !important;
  }

  tbody.pizza-list.expanded > tr {
    display: table-row !important;
  }

  .pizza-toggle-wrap {
    margin-top: 20px;
  }

  .pizza-toggle,
  #pizza-toggle {
    width: 100%;
    max-width: 280px;
    padding: 12px 18px;
  }
}

