body {
  margin: 70;
  font-family: 'Montserrat', sans-serif;
  background: #8b0000;
}

/* ================= HEADER ================= */
.top-header {
  background: #8b0000;
  padding: 12px 0;
}

/* Header base */
.top-header {
  background-color: #8b0000;
  padding: 10px 0;
}

/* Logo */
.peruanito {
  height: 80px;
}

/* Menú de escritorio */
.nav-menu li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu li a:hover {
  color: #ffd700;
}

/* Social Icons */
.social-icons i {
  background: #fff;
  color: #8b0000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* Botón hamburguesa */
.navbar-toggler {
  border: 1px solid #fff;
  font-size: 20px;
}

/* Menú móvil */
#mobileMenu a {
  padding: 10px 0;
  font-weight: bold;
}


.peruanito {
  height: 40px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.social-icons i {
  background: #fff;
  color: #8b0000;       /* rojo peruano */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  font-size: 16px;
  cursor: pointer;
}


/* ================= HERO ================= */
.hero {
  position: relative;
  background: #8b0000;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  /* QUITAR min-height: 400px; */ /* Esto causa espacio vacío */
  height: auto; /* Se ajusta al contenido */
}

/* Video fullscreen */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta a cualquier pantalla */
}

/* Imagen que ocupa todo el ancho */
.somos {
  display: block; /* Cambiar de relative a block simple */
  width: 100%; /* 100% del contenedor */
  max-width: 100%; /* Sin límite */
  height: auto; /* Altura proporcional */
  margin: 0;
  padding: 0;
  /* QUITAR position: relative; */ /* No es necesario */
  /* QUITAR todas las propiedades de posicionamiento */
}

/* Contenedor sin márgenes/paddings */
.hero .container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  /* QUITAR min-height: 400px; */ /* Esto también causa espacio */
}

/* BANNER - pegado inmediatamente después */
.banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-top: 0 !important;
  background-color: transparent;
}
.banner-menu {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-top: 0 !important;
  background-color: transparent;
}





/* Imagen MENU grande debajo de la bandera */
.menu-img {
  position: absolute;
  top: 180px;            /* ajusta este valor si quieres más o menos separación */
  left: 50%;
  transform: translateX(-50%);
  width: 80vh;
  z-index: 2;
}

.banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-top: 0 !important;
  background-color: transparent;
}


.contenedor-interno {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.letras {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 350px; /* Cambié de 95% a 100% para que ocupe todo el contenedor */
  height: auto;
  max-height: 30vh;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero {
    height: auto; /* Asegurar altura automática */
    /* QUITAR min-height: 300px; */ /* Esto causa espacio */
  }
  
  .hero .container {
    /* QUITAR min-height: 300px; */ /* Esto causa espacio */
  }
  
  .somos {
    width: 100% !important; /* Forzar 100% en móviles */
    max-width: 100% !important;
    /* QUITAR top: 50%; y transform */ /* Esto centra pero no ocupa todo */
    /* QUITAR position: absolute/relative */ /* Deja que sea block normal */
  }
  
  .banner {
    height: 100px;
    margin-top: 0 !important;
  }
   .banner-menu {
    height: 190px;
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .hero {
    /* QUITAR min-height: 250px; */ /* Esto causa espacio */
  }
  
  .hero .container {
    /* QUITAR min-height: 250px; */ /* Esto causa espacio */
  }
  
  .somos {
    width: 100% !important;
  }
}

/* Pie de pagina web */
.footer {
  background-color: #8b0000; /* rojo peruano */
  color: #fff;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer .designer {
  font-weight: bold;
  color: #ffd700; /* opcional: color dorado para resaltar */
}

.footer .designer a {
  font-weight: bold;
  color: #ffd700; /* opcional: color dorado para resaltar */
}

/* RESPONSIVO */
@media (max-width: 576px) {
  .footer {
    font-size: 12px;
    padding: 15px 10px;
  }
}


/* ================= WHATSAPP ================= */
.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 35px;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
}

.whatsapp i {
  font-size: 22px;
}

/* RESPONSIVE */
/* Header responsive */
.top-header .nav-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* menor espacio en móviles */
}

@media (max-width: 768px) {
  .top-header .nav-menu {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
    justify-content: center;
  }

  .peruanito {
    height: 50px;
  }
}

/* Hero images responsive */
.logo-circular,
.bandera,
.wok,
.verduras-img,
.menu-img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .logo-circular {
    display: none;
  }
}
/* Ajustes móviles */
@media (max-width: 992px) {
  .logo-circular { width: 140px; top: 15%; left: 5%; }
 
  .bandera { width: 90%; top: 5%; }
  .menu-img { width: 300px; top: 220px; }

}

@media (max-width: 576px) {
  .logo-circular { width: 120px; top: 12%; left: 3%; }
 
  .bandera { width: 115%; top: 4%; }
  .menu-img { width: 200px; top: 160px; }

}
.menu-item {
  border-bottom: 2px solid #c30000;
  padding: 20px 0;
  flex-wrap: wrap;
}

.menu-item .col-md-4,
.menu-item .col-md-8 {
  padding: 5px;
}

@media (max-width: 768px) {
  .price-badge {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
  }

  .price-text span {
    font-size: 20px;
  }

  .text-section {
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .footer {
    font-size: 12px;
    padding: 15px 10px;
  }

  .footer a {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .whatsapp {
    padding: 8px 12px;
    font-size: 14px;
    right: 10px;
    bottom: 15px;
  }

  .whatsapp i {
    font-size: 18px;
  }
}
/* Estilos para el menú móvil */
.mobile-menu {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.mobile-menu .nav-link {
  padding: 15px 0;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.mobile-menu .nav-link:hover {
  background-color: #e9ecef;
  color: #000;
}

.mobile-menu .nav-item:last-child .nav-link {
  border-bottom: none;
}

/* Botón hamburguesa */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}
/* Fondo general */
.quienes-section {
    background: linear-gradient(135deg, #BEBBFC, #e7e5ff);
    overflow: hidden;
}

/* Títulos */
.subtitle {
    color: #17e5d9;
    letter-spacing: 2px;
    font-weight: 600;
}

.title {
    color: #08024C;
    font-weight: 800;
    text-transform: uppercase;
}

/* Imagen */
.img-wrapper {
    display: inline-block;
}

.floating-img {
    animation: floatImage 4s ease-in-out infinite;
    box-shadow: 0 25px 45px rgba(8, 2, 76, 0.35);
    transition: transform 0.5s ease;
}

.floating-img:hover {
    transform: scale(1.05);
}

/* Badge de experiencia */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #8b0000; /* rojo */
    color: #fff;
    padding: 20px 22px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    animation: pulse 2.5s infinite;
}

.experience-badge h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #F5C70C;
}

.experience-badge span {
    font-size: 12px;
    line-height: 1.2;
    display: block;
}

/* Animaciones */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* contactos */

        .contact-card {
            
            border-radius: 20px;
            padding: 30px;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
            animation: fadeInUp 1.2s;
        }

        .contact-card h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #ff2e2e;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px;
            margin-bottom: 15px;
            border-radius: 12px;
            font-size: 18px;
            text-decoration: none;
            color: #fff;
            transition: all 0.4s ease;
        }

        .social-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255,255,255,0.3);
        }

        .tiktok { background: #000; }
        .facebook { background: #1877f2; }
        .whatsa { background: #25d366; }
        .maps { background: #ff2e2e; }

        .icon {
            font-size: 22px;
        }
  h2 i {
    vertical-align: middle;
}
/* Menú móvil - posición absoluta sobre el contenido */
.mobile-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  background-color: #8b0000 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contenedor del menú móvil */
.mobile-menu-container {
  padding: 15px 0;
}

/* Bootstrap collapse fix para posición absoluta */
.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}

/* Enlaces del menú móvil - alineados a la izquierda */
.mobile-menu .nav {
  text-align: left !important;
  padding-left: 15px;
}

.mobile-menu .nav-link {
  padding: 15px 20px !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

.mobile-menu .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffd700 !important;
  padding-left: 30px !important;
}

.mobile-menu .nav-item:last-child .nav-link {
  border-bottom: none !important;
}

/* Íconos del menú móvil */
.mobile-menu .nav-link i {
  width: 25px;
  text-align: center;
}

/* Asegurar que el header tenga posición relativa */
.top-header {
  position: relative !important;
}

/* Para evitar que el contenido se mueva */
body {
  overflow-x: hidden;
}

/* Ajustes específicos para móviles */
@media (max-width: 767.98px) {
  .mobile-menu {
    position: fixed !important; /* Cambiado a fixed para que no mueva contenido */
    top: 60px !important; /* Ajusta según la altura de tu header */
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
  }
  
  .mobile-menu-container {
    padding: 10px 0;
  }
  
  .mobile-menu .nav-link {
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
}

/* Para tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .mobile-menu {
    width: 300px !important; /* Ancho fijo para tablets */
    left: auto !important;
    right: 15px !important;
  }
}
.contact-button {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre botones */
}

/* Estilo base para cada enlace */
.contact-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Estilo para los íconos */
.contact-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mostrar tooltip al pasar el mouse */
.contact-link:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Estilo general para los tooltips */
.tooltip {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 9999;
    right: 70px; /* Posiciona el tooltip a la izquierda del ícono */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Flecha del tooltip */
.tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}

/* Tooltip específico para WhatsApp */
.tooltip-whatsapp {
    background-color: #25D366;
}

.tooltip-whatsapp::after {
    border-left-color: #25D366;
}

/* Efecto hover en el ícono */
.contact-link:hover .contact-icon {
    transform: scale(1.1);
}

/* Ajuste para móviles - botón más abajo */
@media (max-width: 768px) {
    .contact-button {
        bottom: 80px; /* Más abajo en móviles */
        right: 15px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    .tooltip {
        width: 140px;
        font-size: 13px;
        right: 65px;
        padding: 6px;
    }
    
    /* Asegurar que el tooltip no se salga de la pantalla en móviles */
    .tooltip::after {
        border-width: 4px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 576px) {
    .contact-button {
        bottom: 70px; /* Aún más abajo */
        right: 10px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .tooltip {
        width: 130px;
        font-size: 12px;
        right: 60px;
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-button {
        bottom: 90px;
        right: 20px;
    }
}
/* Botón hamburguesa - color amarillo dorado */
.navbar-toggler {
    border: 1px solid #ffd700 !important; /* Borde dorado */
    background-color: transparent !important;
}

.navbar-toggler i {
    color: #ffd700 !important; /* Ícono dorado */
    font-size: 24px;
}

/* Cuando el menú está abierto */
.navbar-toggler:not(.collapsed) i {
    color: #ffd700 !important; /* Mantener dorado cuando está abierto */
}

/* Eliminar el ícono por defecto de Bootstrap si lo hay */
.navbar-toggler-icon {
    background-image: none !important;
}