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

html,
body {
  min-height: 100vh;
  width: 100%;
}

.header {
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-mobile {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  /* Ajusta el padding para controlar la altura */
  height: 60px;
  /* Limita la altura de la navbar */
  color: white;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: large;
}

.navbar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.navbar-center .logo img {
  height: 100%;
  /* Ajusta el logo para que ocupe toda la altura de la navbar */
  max-height: 40px;
  /* Limita la altura máxima del logo */
}

.navbar-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.navbar-left .contact-info .separator {
  margin-left: 20px;
  margin-right: 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
}

.container.nav-container {
  width: 100%;
  max-width: 1200px;
  /* Ajusta según tu diseño */
  margin: 0 auto;
  padding: 0 20px;
  /* Espaciado horizontal si lo deseas */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-section {
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-section {
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/cocinitasfondo.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.about-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 5;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.hero-text h1 {
  margin-bottom: 3rem;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  text-align: center;
}

.container {
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer {
  padding: 20px 0;
  background: white;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 18px;
  font-size: 0.9rem;
  text-align: left;
}

.footer-legal a {
  color: #222;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
  text-decoration: underline;
}

.footer-logo img {
  max-height: 30px;
  /* Ajusta la altura máxima del logo */
  width: auto;
}

.footer-credit {
  margin: 0;
  text-align: right;
}



/* Páginas legales */
.privacy-policy-page,
.cookies-policy-page,
.legal-notice-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

.privacy-policy-page .container,
.cookies-policy-page .container,
.legal-notice-page .container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.privacy-policy-page .hero,
.cookies-policy-page .hero,
.legal-notice-page .hero {
  padding: 4rem 0 3rem;
  background: #f5f7fa;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy-page .hero h1,
.cookies-policy-page .hero h1,
.legal-notice-page .hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.privacy-policy-page .hero-subtitle,
.cookies-policy-page .hero-subtitle,
.legal-notice-page .hero-subtitle {
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #4b5563;
}

.privacy-policy-page .last-updated,
.cookies-policy-page .last-updated,
.legal-notice-page .last-updated {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}

.privacy-policy-page main,
.cookies-policy-page main,
.legal-notice-page main {
  padding: 3rem 0;
}

.privacy-policy-page .policy-introduction,
.cookies-policy-page .policy-introduction,
.legal-notice-page .policy-introduction {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.privacy-policy-page .policy-section,
.cookies-policy-page .policy-section,
.legal-notice-page .policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy-page .policy-section:last-child,
.cookies-policy-page .policy-section:last-child,
.legal-notice-page .policy-section:last-child {
  border-bottom: none;
}

.privacy-policy-page .policy-section h2,
.cookies-policy-page .policy-section h2,
.legal-notice-page .policy-section h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #111827;
}

.privacy-policy-page .policy-section p,
.cookies-policy-page .policy-section p,
.legal-notice-page .policy-section p {
  margin: 0 0 1rem;
}

.privacy-policy-page ul,
.cookies-policy-page ul,
.legal-notice-page ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-policy-page li,
.cookies-policy-page li,
.legal-notice-page li {
  margin-bottom: 0.5rem;
}

.privacy-policy-page dl,
.cookies-policy-page dl,
.legal-notice-page dl {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
}

.privacy-policy-page dl div,
.cookies-policy-page dl div,
.legal-notice-page dl div {
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.privacy-policy-page dt,
.cookies-policy-page dt,
.legal-notice-page dt {
  font-weight: 700;
  color: #111827;
}

.privacy-policy-page dd,
.cookies-policy-page dd,
.legal-notice-page dd {
  margin: 0.25rem 0 0;
  color: #4b5563;
}

.privacy-policy-page a,
.cookies-policy-page a,
.legal-notice-page a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-policy-page a:hover,
.privacy-policy-page a:focus,
.cookies-policy-page a:hover,
.cookies-policy-page a:focus,
.legal-notice-page a:hover,
.legal-notice-page a:focus {
  text-decoration: underline;
}

.privacy-policy-page .text-primary,
.cookies-policy-page .text-primary,
.legal-notice-page .text-primary {
  color: #2563eb;
}

@media (min-width: 768px) {
  .privacy-policy-page dl,
  .cookies-policy-page dl,
  .legal-notice-page dl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-legal {
    justify-content: center;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

/* Estilos para la sección de contacto */
.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  /* hazlo de altura completa */
  padding: 0 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/cocinitasfondo.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



.contact-container {
  background: rgba(35, 15, 15, 0.78);
  padding: 50px;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  max-width: 650px;
  width: 100%;
}


.contact-section .container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  color: #f1e4d2;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.contact-intro {
  max-width: 520px;
  margin: 0 auto 34px;
  color: #f8efe4;
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
}

.contact-section label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  text-align: left;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(255, 248, 240, 0.849);
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: #a67c52;
  box-shadow:
    0 0 0 3px rgba(166, 124, 82, 0.2);
}

.contact-section button {
  display: block;
  margin: 10px auto 0 auto;
  min-width: 180px;
  background: #a67c52;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.contact-section button:hover {
  background: #8b6845;
  transform: translateY(-2px);
}

.contact-section button:hover {
  background: #7329A0;
}
.contact-address {
  margin: 40px auto;
  max-width: 650px;
  text-align: center;
  color: #f1e4d2;
}

.contact-address p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-page-address {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 600px) {
  .contact-section {
    justify-content: flex-start;
    height: auto;
    min-height: 100svh;
    padding: 130px 16px 32px;
  }

  .contact-container {
    max-width: 100%;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .contact-section h1 {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }

  .contact-intro {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px;
    margin-bottom: 16px;
  }

  .contact-page-address {
    position: static;
    margin-top: 22px;
    padding: 0 8px;
  }
}


/* Sección principal del menú */
.menu-section {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  /* coherente con tu fondo */
  color: white;
  min-height: 100vh;
}

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgb(0, 0, 0);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

/* Navegación de categorías */
.menu-nav {
  text-align: center;
  margin-bottom: 40px;
}

.menu-nav ul {
  display: flex;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
}

.menu-nav li a {
  text-decoration: none;
  background: #000000;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
}

.menu-nav li a:hover {
  background: #000000;
}

/* Aumenta el tamaño de fuente solo en la sección del menú */
.menu-section {
  font-size: 1.25em;
  font-family: 'Goudy Old Style', 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive, Georgia, 'Times New Roman', Times, serif;
}


/* Secciones de categorías */
.menu-category {
  margin-bottom: 60px;
}

.menu-category h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #a39977;
  border-bottom: 2px solid #a39977;
  padding-bottom: 5px;

}

.menu-section h1 {
  font-size: 3.5rem;
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
  text-decoration: underline;
  color: rgb(0, 0, 0)
}

/* Solo el menú y sus textos serán más grandes */
.menu-section h3,
.menu-section h4,
.menu-section h5,
.menu-section h6,
.menu-section ul,
.menu-section li,
.menu-section span {
  font-family: 'Goudy Old Style', 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive, Georgia, 'Times New Roman', Times, serif;
  font-size: 1.1em;
}

/* Transición suave al ancla */
html {
  scroll-behavior: smooth;
}

.platos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plato-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.plato-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.plato-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  margin-right: 24px;
  background: #222;
}

.plato-info {
  flex: 1;
  padding: 10px 0;
  color: #fff;
}

.plato-info strong {
  font-size: 1.2em;
}

.plato-info span {
  font-weight: bold;
  margin-left: 10px;
  color: #a39977;
}

.titulo-entrantes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.titulo-entrantes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding-right: 24px;
  /* Añade espacio a la derecha */
}

.icono-entrantes-alternativo {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #a39977;
  border-radius: 6px;
  overflow: hidden;
}

.titulo-entrantes h2 {
  font-size: 2rem;
  color: #a39977;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  border: none;
}

.icono-entrantes-alternativo img {
  width: 100%;
  height: 100%;
  display: block;
}

.titulo-entrantes-linea {
  width: 100%;
  height: 2px;
  background: #a39977;
  margin-top: 4px;
  border-radius: 1px;
}

.titulo-primeros {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.titulo-primeros-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding-right: 24px;
  /* Añade espacio a la derecha */
}

.icono-primeros-alternativo {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #a39977;
  border-radius: 6px;
  overflow: hidden;
}

.titulo-primeros h2 {
  font-size: 2rem;
  color: #a39977;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  border: none;
}

.icono-primeros-alternativo img {
  width: 100%;
  height: 100%;
  display: block;
}

.titulo-primeros-linea {
  width: 100%;
  height: 2px;
  background: #a39977;
  margin-top: 4px;
  border-radius: 1px;
}


.titulo-segundos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.titulo-segundos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding-right: 24px;
  /* Añade espacio a la derecha */
}

.icono-segundos-alternativo {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #a39977;
  border-radius: 6px;
  overflow: hidden;
}

.titulo-segundos h2 {
  font-size: 2rem;
  color: #a39977;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  border: none;
}

.icono-segundos-alternativo img {
  width: 100%;
  height: 100%;
  display: block;
}

.titulo-segundos-linea {
  width: 100%;
  height: 2px;
  background: #a39977;
  margin-top: 4px;
  border-radius: 1px;
}




.titulo-postres {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.titulo-postres-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding-right: 24px;
  /* Añade espacio a la derecha */
}

.icono-postres-alternativo {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #a39977;
  border-radius: 6px;
  overflow: hidden;
}

.titulo-postres h2 {
  font-size: 2rem;
  color: #a39977;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  border: none;
}

.icono-postres-alternativo img {
  width: 100%;
  height: 100%;
  display: block;
}

.titulo-postres-linea {
  width: 100%;
  height: 2px;
  background: #a39977;
  margin-top: 4px;
  border-radius: 1px;
}


.titulo-bebidas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.titulo-bebidas-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding-right: 24px;
  /* Añade espacio a la derecha */
}

.icono-bebidas-alternativo {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #a39977;
  border-radius: 6px;
  overflow: hidden;
}

.titulo-bebidas h2 {
  font-size: 2rem;
  color: #a39977;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  border: none;
}

.icono-bebidas-alternativo img {
  width: 100%;
  height: 100%;
  display: block;
}

.titulo-bebidas-linea {
  width: 100%;
  height: 2px;
  background: #a39977;
  margin-top: 4px;
  border-radius: 1px;
}


@media (max-width: 850px) {
  .menu-container {
    padding: 20px;
  }

  .plato-img {
    width: 80px;
    height: 80px;
    margin-right: 16px;
  }

  .menu-section h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .menu-category h2 {
    font-size: 1.3rem;
  }
}


body.menu {
  height: 100%;
  width: 100%;
  background-image: url('/images/fondo2.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center center;
}



/* Menú hamburguesa responsive */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/*navegacion responsive */
@media (max-width: 850px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    flex-direction: column;
    gap: 0;
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 15;
    padding: 10px 0;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .navbar-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

/* Animación del icono hamburguesa al abrir */
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

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

/*Menú enlaces internos responsive */

@media (max-width: 850px) {
  .menu-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 15px;
    /* 12px vertical, 15px horizontal */
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .menu-nav li {
    /* No poner width ni flex aquí */
    margin: 0;
    /* Asegúrate de que no haya margen extra */
  }

  .menu-nav li a {
    display: inline-block;
    transition: background 0.2s;
  }

  .menu-nav li a:hover {
    background: #e0e0e0;
  }
}



.container.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar-left,
.navbar-center,
.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-center {
  justify-content: center;
  flex: 1;
}

.navbar-left {
  justify-content: flex-start;
}

.navbar-right {
  justify-content: flex-end;
}


/* Móviles. Por debajo de 600px */

@media (max-width: 600px) {

  /* OCULTA HEADER DE ESCRITORIO Y MUESTRA EL MÓVIL */
  .header {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  /* HEADER MÓVIL */
  .nav-container-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
  }

  .navbar-mobile-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-bottom: 8px;
  }

  .navbar-mobile-row:first-child {
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .navbar-right-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    padding-right: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    flex-direction: column;
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 15;
    padding: 10px 0;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  /* --- OTROS ESTILOS DE SECCIONES QUE SÍ QUIERES EN MÓVIL --- */
  .menu-container {
    padding: 10px;
    border-radius: 0;
  }

  .menu-section {
    padding: 30px 5px;
    padding-top: 80px;
    /* Ajusta según la altura real de tu navbar */
  }

  .plato-item {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .plato-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto 10px auto;
    border-radius: 12px;
  }

  .titulo-entrantes-row,
  .titulo-primeros-row,
  .titulo-segundos-row,
  .titulo-postres-row {
    flex-direction: row;
    gap: 8px;
    padding-right: 8px;
  }

  .icono-entrantes-alternativo,
  .icono-primeros-alternativo,
  .icono-segundos-alternativo,
  .icono-postres-alternativo {
    width: 32px;
    height: 32px;
  }

  .menu-section h1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .menu-category h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .logo-mobile img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .navbar-mobile-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .navbar-mobile-row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo-mobile,
  .navbar-right-mobile {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: rgba(34, 34, 34, 0.7);
    /* Ajusta la opacidad y color según tu diseño */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .hero-section {
    position: relative;
    /* Asegura que el hero esté debajo del header */
  }

  .about-section {
    position: relative;
    /* Asegura que el hero esté debajo del header */
  }

  .nav-container-mobile {
    /* Si necesitas padding para el contenido del header móvil */
    padding: 0 10px;
  }
}

@media (max-width: 600px) {

  .header-mobile .contact-info,
  .header-mobile .contact-info span,
  .header-mobile .contact-info .email {
    color: #fff;
    font-size: 1rem;
    /* O el valor que uses en escritorio */
    font-weight: normal;
  }
}

@media (max-width: 600px) {
  .navbar-mobile-row {
    justify-content: space-between;
  }

  .logo-mobile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo-mobile img {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
  }

  .navbar-right-mobile {
    justify-content: flex-end;
    flex: 1;
  }
}

@media (max-width: 600px) {
  .nav-menu-mobile {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    flex-direction: column;
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 15;
    padding: 10px 0;
  }

  .nav-menu-mobile.open {
    display: flex;
  }

  .nav-menu-mobile li {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .nav-menu-mobile li a {
    display: block;
    padding: 12px 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nav-menu-mobile {
    color: #fff;
    list-style: none;
    padding-left: 0;
  }

  .nav-menu-mobile li {
    list-style: none;
  }

  .nav-menu-mobile li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    /* Ajusta si quieres */
    background: none;
  }
}

/* Enlace Volver Arriba */
.volver-arriba-container {
  text-align: right;
  margin-top: 20px;
  padding-right: 10px;
}

.volver-arriba {
  color: #a39977;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Goudy Old Style', 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive, Georgia, 'Times New Roman', Times, serif;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.volver-arriba:hover {
  color: #c4b998;
  text-decoration: underline;
}

/* Ajustes para la sección About */
.about-hero {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  padding-top: 130px !important; /* Respeta el header de sobra */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  height: 100vh !important;
  width: 100% !important;
}

.about-text p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem) !important; /* Texto un poco más pequeño */
}

.about-slider {
  width: 80%; /* En vez de todo el ancho, ocupa el 80% */
  max-width: 1600px; /* Para que en pantallas gigantes 80% no sea excesivo */
  height: 350px;
  margin: 70px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* Al no ocupar todo el ancho, recuperar bordes redondeados queda muy elegante */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slider-track {
  display: flex;
  width: calc(450px * 8); 
  height: 100%;
  animation: slideMarquee 50s linear infinite; /* Mayor tiempo = movimiento más lento y suave */
}

.slider-track img {
  width: 450px; /* Ancho fijo para cada imagen */
  height: 100%;
  object-fit: cover; /* Recortar si no cabe sin deformar */
}

@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-450px * 4)); } /* Desplazarse la mitad exacta del track (4 imágenes) */
}

@media (max-width: 850px) {
  .about-slider {
    height: 180px;
  }
}
