@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,800&display=swap');

:root {
  --color-marron: #1e1e26;
  --color-azul: #000000;
  --color-blanco: #ffffff;
  --color-negro: #000000;
  --color-principal: var(--color-marron);
  --color-acento: var(--color-azul);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000000;
  color: var(--color-negro);
  transition: opacity 0.3s ease-in-out;
}

body.fade-out {
  opacity: 0;
}

.navbar {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--color-principal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-principal);
  letter-spacing: 1px;
}

.navbar input {
  padding: 0.6rem 1rem;
  border: 2px solid var(--color-principal);
  border-radius: var(--radius);
  outline: none;
  width: 300px;
  transition: 0.3s;
}

.navbar input:focus {
  border-color: var(--color-acento);
  box-shadow: 0 0 10px var(--color-acento);
}
body.mengano-style .galeria {
  background-color: #2d5f54;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  padding: 3rem 2rem;
}
.hero-index {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-principal), var(--color-acento));
  color: white;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero-index h1 {
  font-size: 2.2rem;
  font-weight: 800;
  animation: fadeInDown 0.6s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.locales-container {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card-local {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-local:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-local img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-local .info {
  padding: 1rem;
}

.card-local h2 {
  font-size: 1.3rem;
  color: var(--color-principal);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.card-local p {
  font-size: 0.95rem;
  color: #555;
  font-weight: 300;
  margin-bottom: 1rem;
}

.card-local .btn-ver {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--color-principal);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.card-local .btn-ver:hover {
  background: var(--color-acento);
}




















































/* LOCALES */




/* GENERAL */


/* === NAVBAR COMPLETA === */
.navbar {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--color-principal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.navbar .logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-principal);
}

.navbar-center {
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: #555;
  flex-grow: 1;
}

.navbar-local {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-local img {
  height: 28px;
  border-radius: 50%;
  margin-right: 4px;
}

/* === HERO DEL LOCAL === */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.vertical {
  height: 80vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: white;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  animation: fadeInDown 0.7s ease forwards;
}

.hero.vertical h1 {
  background: rgba(0,0,0,0.6);
  padding: 1rem 2rem;
  border-radius: 12px;
  max-width: 90%;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}


@media (min-width: 769px) {
  #hero-vertical {
    display: flex;
    background-color: #2d5f54;
    padding: 0rem 2rem;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  #hero-vertical .hero-img {
    flex: 1;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
  }

  #hero-vertical .hero-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }

  #hero-vertical .hero-logo-box {
    flex: 1;
    max-width: auto;
    max-height: 1000px;
    background-color: #343434;
    border-radius: 24px;
    padding: 13rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    gap: 1.5rem;
    animation: fadeInLogo 0.6s ease forwards;
  }

  #hero-vertical .hero-logo-box img.logo {
    width: 500px;
    height: auto;
  }

  #hero-vertical .hero-logo-box .socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
  }

  #hero-vertical .hero-logo-box .socials img {
    height: 28px;
    width: 28px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }

  #hero-vertical .hero-logo-box .socials img:hover {
    transform: scale(1.15);
  }

  @keyframes fadeInLogo {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

/* === HERO-VERTICAL solo visible en desktop === */
#hero-vertical {
  display: none;
}

/* === DESCRIPCIÓN === */
.descripcion {
  padding: 3rem 2rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.descripcion p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #333;
}

/* === GALERÍA === */
.galeria {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.galeria img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.03);
}

/* === MENÚ PDF EMBEBIDO === */
.menu-pdf iframe {
  width: 100%;
  max-width: 960px;
  height: 600px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: block;
  margin: 0 auto;
}

/* === FORMULARIO === */
.footer-cta {
  background: #1e1e26;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.footer-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-cta p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer-cta form input,
.footer-cta form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.footer-cta form button {
  padding: 0.8rem 2rem;
  background: white;
  color: var(--color-principal);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-cta form button:hover {
  background: var(--color-acento);
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .navbar-local {
    justify-content: center;
  }

  .navbar-center {
    font-size: 0.9rem;
  }

  .menu-pdf iframe {
    height: 450px;
  }

  .hero h1,
  .hero.vertical h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #hero-vertical {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  #hero-vertical .hero-logo-box,
  #hero-vertical .hero-logo-box img,
  #hero-vertical .hero-logo-box .socials {
    display: none !important;
  }
}










/* === MENÚ PDF DISEÑO NUEVO === */
.menu-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
}

.menu-pdf-box {
  flex: 1 1 600px;
  max-width: 640px;
  min-width: 320px;
}

.menu-pdf-box iframe {
  width: 100%;
  height: 750px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Texto al lado derecho */
.menu-info {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: left;
  padding: 1rem;
}

.menu-info h2 {
  font-size: 1.5rem;
  color: var(--color-principal);
  font-weight: 800;
  margin-top: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .menu-layout {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .menu-info {
    text-align: center;
    max-width: 100%;
  }

  .menu-info h2 {
    font-size: 1.3rem;
  }

  .menu-pdf-box iframe {
    height: 500px;
  }
}
/* === SECCIÓN CARTA Y MAPA === */
.menu-section {
  padding: 3rem 2rem;
  background-color: #fff;
}

.menu-slider {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-img-wrapper {
  flex: 1 1 45%;
  min-width: 320px;
  max-width: 480px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.menu-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-img-wrapper img:hover {
  transform: scale(1.01);
}

.menu-slider-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.menu-slider-controls button {
  font-size: 1.3rem;
  background: none;
  border: 2px solid #000000;
  color: #000000;
  border-radius: 50%;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.menu-slider-controls button:hover {
  background: #ffffff;
  color: black;
}

.menu-info-right {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: #444;
}

.menu-info-right iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-info-right .horarios,
.menu-info-right .ubicacion,
.menu-info-right .redes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-info-right .redes a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-principal);
  font-weight: 500;
  transition: 0.2s;
}

.menu-info-right .redes a:hover {
  color: var(--color-acento);
}

.menu-info-right .redes img {
  height: 22px;
}

@media (max-width: 768px) {
  .menu-slider {
    flex-direction: column;
    align-items: center;
  }

  .menu-info-right {
    align-items: center;
    text-align: center;
  }

  .menu-slider-controls {
    justify-content: center;
  }

  .menu-info-right iframe {
    height: 200px;
  }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  padding: 1rem;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  background: white;
}

#close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.lightbox-controls {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.lightbox-controls button {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  color: black;
  transition: background 0.3s ease;
}

.lightbox-controls button:hover {
  background: var(--color-acento);
  color: white;
}





















/* MENGANO */



/* === MENGANO CUSTOM STYLE === */
body.mengano-style {
  background-color: #fef3e6;
  color: #2e2e2e;
}

body.mengano-style .hero {
  background-color: #fef3e6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
}

body.mengano-style .hero.vertical .hero-img {
  flex: 1;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
}

body.mengano-style .hero.vertical .hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

body.mengano-style .hero.vertical .hero-logo-box {
  flex: 1;
  max-width: 420px;
  background-color: #2d5f54;
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  gap: 1rem;
  animation: fadeInLogo 0.6s ease forwards;
}

body.mengano-style .hero.vertical .hero-logo-box img.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  background-color: #2d5f54;
}

body.mengano-style .hero.vertical .hero-logo-box .socials {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

body.mengano-style .hero.vertical .hero-logo-box .socials img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

body.mengano-style .hero.vertical .hero-logo-box .socials img:hover {
  transform: scale(1.15);
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.mengano-style .descripcion {
  background-color: #2d5f54;
  color: #ffffff;
}

body.mengano-style .galeria {
  background-color: #2d5f54;
  padding: 3rem 2rem;
}

body .separador-diagonal {
  background-color: #fef3e6;
  height: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
  margin: 0;
  padding: 0;
}

body.mengano-style .menu-section {
  background-color: #fef3e6;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

body.mengano-style .menu-slider {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

body.mengano-style .menu-img-wrapper,
body.mengano-style .menu-info-right {
  background-color: #2d5f54;
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  flex: 1 1 45%;
  min-width: 300px;
}

body.mengano-style .menu-info-right h2,
body.mengano-style .menu-info-right strong {
  color: #ffffff;
}

body.mengano-style .menu-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.mengano-style .menu-info-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  body.mengano-style .hero {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  body.mengano-style .hero.vertical .hero-logo-box {
    max-width: 90%;
  }

  body.mengano-style .menu-slider {
    flex-direction: column;
    align-items: center;
  }

  body.mengano-style .menu-img-wrapper,
  body.mengano-style .menu-info-right {
    align-items: center;
    text-align: center;
  }
}

body.mengano-style .footer-cta {
  background-color: #4e342e;
  color: #ffffff;
}

body.mengano-style .footer-cta form button {
  background-color: #ffffff;
  color: #4e342e;
}

body.mengano-style .footer-cta form button:hover {
  background-color: #ffffff22;
  color: #ffffff;
}

body.mengano-style .menu-caption,
body.mengano-style h2 {
  color: #4e342e;
}
