/* === ÍNDICE === */
/* - Tipografía */
/* - Layout */
/* - Botones */
/* - Slider / Carrusel */
/* - Encabezado / Footer */
/* - Video / Multimedia */
/* - Iconos / Redes Sociales */
/* - Otros */

/* === Tipografía === */
@font-face {
  font-family: 'Proxima Nova Thin';
  src: url('../fonts/ProximaNova-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-family: 'Proxima Nova Thin';
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.headline { font-size: 2.5rem; margin-bottom: 1rem; }
.subtext { font-size: 1.2rem; margin-bottom: 1.5rem; }

.subtitle {
  background-color:  rgba(10, 30, 80, 0.9); /* Azul con transparencia */
  display: inline-block; /* Ajusta el fondo al tamaño del texto */
  padding: 10px 20px; /* Espacio interno para que se vea bien */
  border-radius: 8px; /* Opcional: esquinas redondeadas */
  color: #000; /* Color del texto, cámbialo si lo necesitas */
  font-weight: bold;
}



/*==CONTACTO--*/
.top-contact {
  background-color: #003366;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2000;
}

.top-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-contact a:hover {
  color: #00ccff;
}

.top-contact i {
  margin-right: 6px;
}




/* === Layout === */
.content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.menu-card {
  position: relative;
  border-radius: 10px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: white;
}

/* Centro el título en la parte superior con fondo semitransparente */
.menu-title {
  align-self: center; /* centra horizontalmente en el card */
  background-color: rgba(0, 0, 0, 0.5); /* fondo semitransparente */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  margin-top: 10px;
  z-index: 1;
}


.menu-section {
  padding: 2rem;
  margin-top: 80px;
  text-align: center;
  color: white;
}

.menu-section h2 {
   color: white;
  text-shadow: 0 0 5px black;
}

.overlay, .shift-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
}

.shift-right { margin-left: 20rem; }

/* === Botones === */
.btn, .see-more-button, .whatsapp-btn, .info-link {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

.button-group {
  display: flex;
  gap: 1rem;
}

.circle-btn {
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.see-more-wrapper {
  margin-top: 1.5rem;
}

.see-more-button {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(45deg, #00ccff, #0070ff);
  border-radius: 30px;
  font-size: 1rem;
  color: white;
  box-shadow: 0 0 12px #00ccff;
}

.see-more-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #00ccff;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.info-link {
  background: #00ccff;
  color: #000;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.info-link:hover {
  background: #00aacc;
}

/* === Slider / Carrusel === */
.menu-slider {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: scroll;
  padding-top: 1rem;
  scrollbar-width: none;
}

.menu-slider::-webkit-scrollbar { display: none; }

 .menu-slider {
         flex-wrap: wrap;
         overflow: visible;
         justify-content: center;
    }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  padding: 0.4rem 0.6rem;
  z-index: 10;
}


 .swiper-button-prev, .swiper-button-next {
     color: white;
}

 .swiper {
     width: 100%;
     padding-bottom: 40px;
     overflow: visible;
}
 .swiper-slide {
     width: 400px !important;
     height: 225px;
     border-radius: 8px;
     overflow: hidden;
     transition: transform 0.3s ease-in-out, box-shadow 0.3s, border 0.3s;
     position: relative;
     z-index: 1;
}

 .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 8px;
}

 .swiper-slide:hover {
     transform: scale(1.3);
     z-index: 99;
     box-shadow: 0 0 20px 6px rgba(0, 204, 255, 0.6);
     border: 2px solid #00ccff;
     background: transparent;
    /* asegúrate también aquí */
    ;
}
 .swiper-slide:hover  {
     display: flex;
}

 .info-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     background: rgba(0,0,0,0.8);
     padding: 1rem 0.5rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     border-radius: 0 0 10px 10px;
}


/* === Encabezado / Footer === */
.main-header {
  width: 95%;
  background-color: rgba(10, 30, 80, 0.9);
  color: white;
  padding: 0.5rem 100px 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.main-header .logo img {
  height: 60px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 204, 255, 0.8);
  transition: 0.3s;
}

.main-header .logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.9);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icons a {
  color: white;
  font-size: 1.5rem;
  transition: 0.2s;
}

.header-icons a:hover {
  transform: scale(1.2);
}

.main-footer {
  background-color: rgba(0, 51, 102, 0.7); /* fondo semitransparente */
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-btn {
  background-color: #00aaff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.footer-btn:hover {
  background-color: #0077cc;
  transform: scale(1.05);
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.9;
}


.footer {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  text-align: center;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
}

/* === Video / Multimedia === */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* === Iconos / Redes Sociales === */
.icono-red {
  margin: 0 10px;
  color: white;
  font-size: 2rem;
  transition: 0.3s;
}

.icono-red:hover { transform: scale(1.3); }
.social-fb:hover { color: #1877F2; }
.social-ig:hover { color: #E1306C; }
.social-tt:hover { color: #000000; }
.social-yt:hover { color: #FF0000; }

/* === Otros === */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }


   .main-header .logo img {
    height: 150px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 204, 255, 0.8);
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 3rem;
    transition: transform 0.3s, box-shadow 0.3s;
    }

    
  .menu-card {
    height: 260px;
  }

  .menu-card:hover {
    transform: scale(1.3);
    z-index: 99;
    box-shadow: 0 0 20px 6px rgba(0, 204, 255, 0.6);
    border: 2px solid #00ccff;
    background: transparent;
    background: rgba(0, 0, 0, 0.8);
    
  }

  .menu-card img {
    height: 260px;
    object-fit: cover;
  }

  .menu-card img:hover{
     background: rgba(0, 0, 0, 0.8);
     border-radius: 15px 15px 15px 15px;
     display: flex;


  }

  .menu-section {
      margin-top: 2rem;
        /* para dejar espacio debajo del header */
      padding-top: 1rem;
    }


  .mobile-header {
    text-align: center;
    padding: 1rem;
  }



  .social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .social-row i {
    font-size: 2rem;
    color: white;
    transition: 0.3s ease;
  }

  .social-row i:hover {
    transform: scale(1.2);
  }

  .whatsapp-btn {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .header-icons {
    flex-direction: column; 
    
    margin: 10px 40px 12px 0.5px /* margin: top right bottom left; */
  }
}
