/* ============================================================
   ESTILOS GENERALES
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #241f1a;
  background-color: #fff9ed;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.negrita {
  font-weight: 800;
}

/* ============================================================
   MENU HAMBURGUESA
   ============================================================ */

.MenuHamburguesa {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: start;
}

/* Botón hamburguesa (3 líneas) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 36px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fffaf0;
  border-radius: 999px;
  transition: 0.3s ease;
}

/* Animación de "X" cuando el menú está abierto */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menú desplegable con Inicio, Oferta y Carta */
.NavLinks {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 190px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: linear-gradient(135deg, rgba(24, 23, 20, 0.98), rgba(32, 71, 47, 0.97));
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.25s ease;
}

.NavLinks .EnlaceBarra {
  justify-content: flex-start;
  padding: 10px 8px;
  border-radius: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.NavLinks .EnlaceBarra:hover,
.NavLinks .EnlaceBarra:focus-visible {
  background: rgba(255, 250, 240, 0.10);
}

.NavLinks.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.NavLinks .EnlaceBarra {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   BARRA SUPERIOR FIJA
   ============================================================ */

.GrupoIzquierda {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.BarraSuperiorFija {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(24, 23, 20, 0.98), rgba(32, 71, 47, 0.97));
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.MenuHamburguesa {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 0;
  z-index: 1100;
}

.MarcaBarra {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: 6px;
  max-width: 185px;
  min-width: 0;
  margin-left: 0;
  color: #fffaf0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.MarcaBarra img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 250, 240, 0.35);
}

.NavSuperior {
  display: none;
}

.EnlaceBarra {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #fffaf0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.EnlaceBarra::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6d18b, #fffaf0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.EnlaceBarra:hover::after,
.EnlaceBarra:focus-visible::after {
  transform: scaleX(1);
}

.ContactosBarra {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.ChipContacto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.ChipContacto:hover {
  background: rgba(255, 250, 240, 0.16);
}

@media (max-width: 980px) {
  .BarraSuperiorFija {
    gap: 8px;
  }

  .ContactosBarra {
    justify-content: flex-end;
  }

  .TarjetaOferta {
    padding: 34px 18px;
  }
}

@media (max-width: 640px) {
  .BarraSuperiorFija {
    gap: 4px;
    padding: 8px 10px;
  }

  .MarcaBarra {
    justify-content: center;
    margin-left: 0;
    font-size: 13px;
    gap: 4px;
    max-width: 130px;
  }

  .MarcaBarra img {
    width: 36px;
    height: 36px;
  }

  .MarcaBarra span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
  }

  .ContactosBarra {
    gap: 4px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .ChipContacto {
    font-size: 11px;
    padding: 7px 9px;
    white-space: nowrap;
  }

  .TarjetaPequena {
    padding: 8px 8px 8px 10px;
  }

  .TarjetaPequena .LineaMenu h3 {
    font-size: 13px;
    line-height: 1.08;
  }

  .TarjetaPequena .LineaMenu > span:last-of-type,
  .TarjetaPequena .LineaMenu .PrecioMenu {
    font-size: 12px;
  }
}

/* ============================================================
   HERO / CABECERA
   ============================================================ */

.SeccionHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  text-align: center;
  background-image: linear-gradient(#1c190f73, #1c190f94), url("IMG/CostieraAmalfitana.jpeg");
  background-size: cover;
  background-position: center;
}

/* Borde decorativo exterior */
.SeccionHero::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid #fffaf070;
  pointer-events: none;
}

/* Borde dorado interior */
.SeccionHero::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 27px;
  bottom: 27px;
  left: 27px;
  border: 1px solid #cfa65290;
  pointer-events: none;
}

.MarcoHero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 830px;
  padding: 32px 22px;
  background-color: #fffaf0dc;
  border: 1px solid #ffffffb2;
  box-shadow: 0 32px 90px #00000047;
}

.LogoHero {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 42px #23190e3d;
}

.TextoKicker {
  margin: 0;
  color: #9f2d24;
  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.SeccionHero h1 {
  margin: 10px 0 0;
  color: #20472f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
}

.SubtituloHero {
  margin: 14px 0 0;
  color: #9f2d24;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

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

.BotonHero,
.BotonHeroClaro {
  min-width: 142px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.28s ease;
}

.BotonHero {
  color: #fffaf0;
  background-color: #20472f;
  border: 1px solid #20472f;
}

.BotonHeroClaro {
  color: #20472f;
  background-color: #fffaf0ad;
  border: 1px solid #20472f52;
}

.BotonHero:hover, .BotonHeroClaro:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px #20472f38;
}

/* Imágenes decorativas redondas (solo visibles en pantallas grandes) */
.ImagenDecorIzquierda,
.ImagenDecorDerecha {
  display: none;
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 7px solid #fffaf0dc;
  border-radius: 50%;
  box-shadow: 0 24px 50px #00000047;
}

.ImagenDecorIzquierda {
  left: 60px;
  bottom: 60px;
}

.ImagenDecorDerecha {
  right: 60px;
  top: 115px;
}


/* ============================================================
   CONTENIDO PRINCIPAL
   ============================================================ */

.ContenidoPrincipal {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.SeccionOferta,
.SeccionBuscador,
.SeccionMenu {
  margin: 50px 0;
}

/* ============================================================
   OFERTA
   ============================================================ */

.TarjetaOferta {
  position: relative;
  overflow: hidden;
  padding: 44px 24px;
  color: #fffaf0;
  background-image: linear-gradient(135deg, #20472ff7, #7b211af0), url("IMG/DosTorres.jpeg");
  background-size: cover;
  border: 1px solid #fffaf04d;
  box-shadow: 0 26px 70px #38200a2e;
  text-align: center;
}

.EtiquetaPromocion {
  margin: 0;
  color: #f6d18b;
  font-family: "Cinzel", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

/* Borde interior decorativo */
.TarjetaOferta::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid #fffaf05c;
  pointer-events: none;
}

.TarjetaOferta h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.02;
}

.TarjetaOferta p {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 24px auto 0;
  font-size: 18px;
}

/* Palabras de regalo/oferta: más grandes y en gradiente verde-rojo (bandera italiana) */
.PalabraOferta {
  font-size: 1.25em;
  font-weight: 900;
  background-image: linear-gradient(90deg, #F7DFAE, #E8C77A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.TextoOfertaFinal {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
}


/* ============================================================
   CABECERAS DE SECCIÓN
   ============================================================ */

.EtiquetaSeccion {
  margin: 0;
  color: #9f2d24;
  font-family: "Cinzel", Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.CabeceraBuscador,
.CabeceraSeccion {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.CabeceraBuscador h2,
.CabeceraSeccion h2 {
  margin: 10px 0 0;
  color: #20472f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

/* Línea dorada decorativa debajo del título */
.CabeceraBuscador::after,
.CabeceraSeccion::after {
  content: "";
  display: block;
  width: 220px;
  height: 2px;
  margin: 22px auto 0;
  background-image: linear-gradient(90deg, transparent, #c99b44, transparent);
}


/* ============================================================
   BUSCADOR
   ============================================================ */

.PanelBuscador {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  background-color: #fffaf0c7;
  border: 1px solid #c99b4457;
  box-shadow: 0 20px 55px #462d141c;
}

.PanelBuscador label {
  display: block;
  margin-bottom: 10px;
  color: #20472f;
  font-weight: 800;
}

.FilaBuscar {
  display: grid;
  gap: 10px;
}

.FilaBuscar input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: #241f1a;
  background-color: #ffffff;
  border: 1px solid #241f1a33;
  font: inherit;
  outline: none;
}

.FilaBuscar input:focus {
  border-color: #20472f;
  box-shadow: 0 0 0 4px #20472f1f;
}

.FilaBuscar button,
.BotonFiltro {
  height: 48px;
  padding: 0 16px;
  color: #fffaf0;
  background-color: #9f2d24;
  border: 1px solid #9f2d24;
  font-weight: 800;
  cursor: pointer;
  transition: 0.24s ease;
}

.FilaBuscar button:hover, .BotonFiltro:hover, .BotonFiltro.activo {
  color: #fffaf0;
  background-color: #20472f;
  border-color: #20472f;
}

.FilaFiltros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.BotonFiltro {
  flex: 1;
  min-width: fit-content;
  background-color: #fffaf0;
  color: #20472f;
  border-color: #20472f3d;
}

.ContadorResultados {
  margin: 14px 0 0;
  color: #72685d;
  font-size: 15px;
  font-weight: 700;
}


/* ============================================================
   SECCIONES DE CARTA
   ============================================================ */

.SeccionMenu {
  padding: 48px 32px;
  background-color: #fffaf0b8;
  border: 1px solid #c99b4447;
  box-shadow: 0 22px 68px #4930141a;
}

/* Fondo cálido para pizzas novedades */
.SeccionCalida {
  background-image: linear-gradient(#fffaf0e8, #fffaf0e8), url("IMG/PizzaMargherita.jpg");
  background-size: cover;
}

/* Fondo verde para pizzas creativas */
.SeccionVerde {
  background-image: linear-gradient(#f9f6ecee, #f9f6ecee), url("IMG/FocacciaGenovese.jpg");
  background-size: cover;
}

/* Fondos de secciones */
.SeccionEntrantes {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoEntrantes.jpg");
  background-size: cover;
  background-position: center;
}

.SeccionCalzones {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoCalzones.jpg");
  background-size: cover;
  background-position: center;
}

.SeccionClasicas {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoClasicas.jpg");
  background-size: cover;
  background-position: center;
}

.SeccionPostres {
  background-image: linear-gradient(#fffaf0f0, #fffaf0f0), url("IMG/Tiramisu.jpg");
  background-size: cover;
}

.SeccionCafe {
  background-image: linear-gradient(#fffaf0e8, #fffaf0e8), url("IMG/FondoCafe.jpg");
  background-size: cover;
  background-position: center;
}

.SeccionLicores {
  background-image: linear-gradient(#fffaf0e8, #fffaf0e8), url("IMG/FondoDisaronno.jpg");
  background-size: cover;
  background-position: center;
}

.PanelCervezas {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoCervezas.jpg");
  background-size: cover;
  background-position: center;
}

.PanelBebidas {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoBebidas.jpg");
  background-size: cover;
  background-position: center;
}

.PanelVinosES {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoVinosES.jpg");
  background-size: cover;
  background-position: center;
}

.PanelVinosIT {
  background-image: linear-gradient(#fffaf0ea, #fffaf0ea), url("IMG/FondoVinosIT.jpg");
  background-size: cover;
  background-position: center;
}


/* ============================================================
   CUADRÍCULAS DE CARTA
   ============================================================ */

.CuadriculaMenu {
  display: grid;
  gap: 16px;
}

.TituloSubseccion {
  margin: 34px 0 14px;
  color: #9f2d24;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  text-align: center;
}


/* ============================================================
   TARJETAS DE PLATO
   ============================================================ */

.TarjetaMenu {
  position: relative;
  padding: 18px 0 18px 14px;
  border-bottom: 1px solid #241f1a24;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

/* Barra de color izquierda */
.TarjetaMenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 3px;
  height: 24px;
  background-image: linear-gradient(#20472f, #9f2d24);
  opacity: 0.72;
}

.TarjetaMenu:hover {
  border-color: #9f2d2459;
  transform: translateY(-2px);
}

.TarjetaMenu.oculta,
.SeccionMenu.oculta {
  display: none;
}

/* Fila con nombre, puntos de separación y precio */
.LineaMenu {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.LineaMenu h3 {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  color: #231f1b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

/* Subtítulo en mayúsculas debajo del nombre del plato */
.SubtituloPlato {
  margin: 4px 0 0;
  color: #826f5a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Puntos de separación entre el título y el precio */
.PuntosMenu {
  display: block;
  flex: 1 1 0%;
  min-width: 16px;
  align-self: flex-end;
  margin: 0 1px;
  border-bottom: 1px dotted rgba(36, 31, 26, 0.35);
}

/* Precio del plato: sin puntos, en rojo y con peso visual */
.LineaMenu > span:last-of-type,
.LineaMenu .PrecioMenu {
  flex: 0 0 auto;
  color: #9f2d24;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  padding-bottom: 2px;
}

.TarjetaMenu p {
  margin: 8px 0 0;
  color: #665d52;
  font-size: 15px;
}

.TarjetaMenu p.SubtituloPlato {
  margin: 4px 0 0;
  color: #826f5a;
  font-size: 12px;
  line-height: 1.15;
}

/* Tarjeta pequeña para bebidas y cafés */
.TarjetaPequena {
  padding: 10px 10px 10px 12px;
  border-bottom-color: #241f1a1a;
}

.TarjetaPequena::before {
  top: 13px;
  height: 18px;
  width: 2px;
}

.TarjetaPequena .LineaMenu h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
}

.TarjetaPequena .LineaMenu > span:last-of-type,
.TarjetaPequena .LineaMenu .PrecioMenu {
  font-size: 13px;
  line-height: 1.05;
}


/* ============================================================
   PALABRAS Y TEXTOS ESPECIALES
   ============================================================ */

.PalabraRoja {
  color: #c51f1a;
}

.PalabraVerde {
  color: #227a45;
}

.PalabraDestacada {
  color: #9f2d24;
  font-size: 1.1em;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.TextoPequeno {
  font-size: 11px;
  font-weight: 700;
}


/* ============================================================
   BANDERAS
   ============================================================ */

.ImagenBandera,
.BanderaPanel,
.BanderaTitulo {
  display: inline-block;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 4px #00000029;
}

.ImagenBandera {
  width: 22px;
  height: 15px;
  margin: 0 3px;
}

.BanderaPanel {
  width: 26px;
  height: 18px;
  margin-left: 6px;
}

.BanderaTitulo {
  width: 34px;
  height: 22px;
  margin: 0 4px;
}


/* ============================================================
   TABLA DE ALÉRGENOS
   ============================================================ */

.SeccionAlergenos {
  margin-top: 8px;
}

.TextoAlergenos {
  margin: 10px auto 0;
  max-width: 720px;
  color: #5e5446;
  font-size: 0.95rem;
  text-align: center;
}

.ContenedorTablaAlergenos {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(32, 71, 47, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 237, 0.98));
  box-shadow: 0 14px 30px rgba(32, 71, 47, 0.10);
}

.TablaAlergenos {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #2c241d;
  font-size: 0.90rem;
}

.TablaAlergenos thead th {
  padding: 10px 12px;
  background: linear-gradient(135deg, #20472f, #2f6442);
  color: #fffaf0;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.TablaAlergenos tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(32, 71, 47, 0.10);
  vertical-align: middle;
}

.TablaAlergenos tbody tr:nth-child(even) {
  background: rgba(32, 71, 47, 0.04);
}

.TablaAlergenos tbody tr:hover {
  background: rgba(246, 209, 139, 0.18);
}

.CeldaAlergeno {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.IconoAlergeno {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.CeldaAlergeno .negrita {
  font-weight: 800;
  color: #20472f;
  font-size: 0.98rem;
}

/* ============================================================
   PANELES DE BEBIDAS
   ============================================================ */

.DosPaneles,
.CuadriculaBebidas {
  display: grid;
  gap: 18px;
}

.PanelBebida {
  padding: 18px;
  background-color: #ffffffa8;
  border: 1px solid #c99b444d;
  box-shadow: 0 14px 34px #4930141a;
}

.PanelBebida h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding-bottom: 9px;
  color: #20472f;
  border-bottom: 1px solid #20472f2e;
  font-family: "Cinzel", Georgia, serif;
  font-size: 17px;
  text-transform: uppercase;
}

.PanelBebida h2:not(:first-child) {
  margin-top: 26px;
}


/* ============================================================
   MENSAJE "SIN RESULTADOS"
   ============================================================ */

.SinResultados {
  max-width: 920px;
  margin: 22px auto 60px;
  padding: 20px;
  color: #9f2d24;
  background-color: #fffaf0;
  border: 1px solid #9f2d2442;
  text-align: center;
  font-weight: 900;
}


/* ============================================================
   RESEÑAS DE GOOGLE
   ============================================================ */

.SeccionResenas {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 50px;
  padding: 0 16px;
}

.CuadriculaResenas {
  display: grid;
  gap: 18px;
}

.TarjetaResena {
  padding: 24px;
  background-color: #ffffffa8;
  border: 1px solid #c99b444d;
  box-shadow: 0 14px 34px #4930141a;
  text-align: center;
}

.EstrellasResena {
  color: #c99b44;
  font-size: 20px;
  letter-spacing: 3px;
}

.TextoResena {
  margin: 14px 0 0;
  color: #4a4038;
  font-size: 15px;
}

.AutorResena {
  display: block;
  margin-top: 14px;
  color: #20472f;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ============================================================
   PIE DE PÁGINA
   ============================================================ */

.Footer {
  padding: 50px 20px;
  color: #fffaf0;
  background-image: linear-gradient(135deg, #181714fa, #20472ff5), url("IMG/DosTorres.jpeg");
  background-size: cover;
}

.MarcaFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 32px;
  text-align: center;
}

.LogoFooter {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px #00000042;
}

.MarcaFooter h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.MarcaFooter p {
  margin: 7px 0 0;
  color: #fffaf0c2;
}

.ContenidoFooter {
  display: grid;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.ColumnaFooter, .ColumnaRS {
  padding: 20px;
  background-color: #fffaf012;
  border: 1px solid #fffaf024;
  text-align: center;
}

.ColumnaFooter h3,
.ColumnaRS h3 {
  margin: 0 0 14px;
  color: #f6d18b;
  font-family: "Cinzel", Georgia, serif;
  font-size: 16px;
  text-transform: uppercase;
}

.ColumnaFooter p {
  margin: 7px 0 0;
  color: #fffaf0c2;
}

/* Horario del footer */
.ListaHorario {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ListaHorario li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #fffaf01a;
  font-size: 14px;
  color: #fffaf0c2;
}

.ListaHorario li:last-child {
  border-bottom: none;
}

.ListaHorario li span:first-child {
  font-weight: 800;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.HorarioCerrado {
  color: #e2867d;
  font-weight: 800;
}

.ColumnaFooter a:hover {
  color: #f6d18b;
  transform: translateY(2px);
}

.ColumnaRS {
  padding: 20px;
  background-color: #fffaf012;
  border: 1px solid #fffaf024;
  text-align: center;
}

.EnlaceFooter {
  position: relative;
  display: flex;
  justify-content: center;
  width: auto;
  margin: 7px auto;
  color: #fffaf0cc;
}

.EnlaceFooter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #f6d18b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.EnlaceFooter:hover {
  color: #f6d18b;
}

.EnlaceFooter:hover::after {
  transform: scaleX(1);
}

/* Iconos de alérgenos */
.Alergenos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.AlergenoIcono {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffaf0, #fff5df);
  padding: 3px;
  border: 1px solid rgba(32, 71, 47, 0.2);
  box-shadow: 0 12px 22px rgba(36, 31, 26, 0.18);
}

/* Iconos de redes sociales */
.RedesSociales {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.RedesSociales a {
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #fffaf0;
  border: 1px solid #fffaf038;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.28s ease;
}

.RedesSociales i {
  width: 100%;
  height: 100%;
  font-size: 30px;
  fill: currentColor;
  display: block;
  margin-top: 18px;
}

.RedesSociales a:hover {
  color: #fffaf0;
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 24px #00000038;
}

.Instagram:hover {
  background-color: #e1306c;
  border-color: #e1306c;
}

.TikTok:hover {
  background-color: #111111;
  border-color: #00f2ea;
}

.FaceBook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}


/* ============================================================
   RESPONSIVE — MÓVIL PEQUEÑO (menos de 390px)
   ============================================================ */

@media (max-width: 390px) {
  .ContenidoPrincipal {
    padding-left: 0;
    padding-right: 0;
  }

  .SeccionMenu,
  .PanelBuscador,
  .TarjetaOferta {
    border-left: 0;
    border-right: 0;
  }

  .LineaMenu h3 {
    font-size: 18px;
  }

  .LineaMenu > span:last-of-type,
  .LineaMenu .PrecioMenu {
    font-size: 13px;
  }

  .ContactosBarra {
    display: flex;
    visibility: visible;
    gap: 4px;
  }

  .ChipContacto {
    font-size: 11px;
    padding: 7px 9px;
  }

  .MarcaBarra {
    margin-left: 0;
    max-width: none;
  }

  .MarcaBarra span {
    display: none;
  }

  .MarcaBarra img {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 60px;
  }

  .EtiquetaPromocion {
    font-size: 35px;
  }

  h2 {
    font-size: 40px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (más de 620px)
   ============================================================ */

@media (min-width: 620px) {
  .FilaBuscar {
    grid-template-columns: 1fr auto;
  }

  .CuadriculaMenu,
  .CuadriculaCompacta,
  .DosPaneles {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }

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

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

  .MarcaFooter {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

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


/* ============================================================
   RESPONSIVE — ORDENADOR (más de 900px)
   ============================================================ */

@media (min-width: 900px) {
  .CabeceraBuscador h2,
  .CabeceraSeccion h2 {
    font-size: 60px;
    line-height: 0.96;
  }

  .LineaMenu h3 {
    font-size: 27px;
  }

  .ImagenDecorIzquierda,
  .ImagenDecorDerecha {
    display: block;
  }

  .SeccionHero h1 {
    font-size: 64px;
  }

  .LogoHero {
    width: 200px;
    height: 200px;
  }

  .SubtituloHero {
    font-size: 38px;
  }

  .CuadriculaMenu {
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }

  .CuadriculaCompacta {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 28px;
  }

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

  .MarcoHero {
    padding: 60px 56px;
  }

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


/* ============================================================
   RESPONSIVE — PANTALLA GRANDE (más de 1120px)
   ============================================================ */

@media (min-width: 1120px) {
  .CuadriculaBebidas {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}