
        :root {
            --azul-principal: #094AC4;
            --azul-hover: #094AC4;
            --gris-secundario: #a5a7a9;
            --gris-claro: #f0f2f5;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
		
		
        .navbar {
            background-color: var(--azul-principal);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            position: relative;
			width: 100%;       /* <== ESTA ES LA LÍNEA QUE FALTABA */
            z-index: 1000;
            height: 80px;
			position: fixed;
        }
        .logo {
            color: white;
            font-size: clamp(20px, 4vw, 28px);
            font-weight: 800;
            letter-spacing: 1.5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            transition: all 0.4s;
        }
		.logo-img {
    		height: 60px;
    		object-fit: contain;
		}
        .logo span {
            color: var(--gris-secundario);
            display: block;
            font-size: clamp(14px, 3vw, 20px);
            font-weight: 500;
            margin-top: -3px;
            letter-spacing: 1px;
        }
        
        /* Menú Desktop */
        .nav-links {
            display: flex;
            gap: 15px;
        }
        .nav-item {
            position: relative;
            list-style: none;
        }
        .nav-links > .nav-item > a {
            color: white;
            text-decoration: none;
            font-size: clamp(14px, 1.6vw, 16px);
            font-weight: 600;
            padding: 28px 15px;
            transition: all 0.3s;
            display: inline-block;
            position: relative;
        }
        .nav-links > .nav-item > a::before {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,0.8), var(--gris-secundario));
            border-radius: 3px;
            transition: width 0.4s;
        }
        .nav-links > .nav-item > a:hover::before {
            width: 70%;
        }
        
		
		
		
        /* Submenú Desktop */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 280px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s;
            z-index: 1000;
        }
        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .submenu a {
            color: #444 !important;
            padding: 14px 25px !important;
            display: flex !important;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-weight: 500 !important;
            transition: all 0.3s;
        }
        .submenu a:hover {
            background-color: var(--gris-claro);
            padding-left: 30px !important;
        }
        
        /* Menú Hamburguesa */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .3s ease-in-out;
        }
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2), 
        .hamburger span:nth-child(3) { top: 10px; }
        .hamburger span:nth-child(4) { top: 20px; }
        .hamburger.open span:nth-child(1),
        .hamburger.open span:nth-child(4) {
            top: 10px;
            width: 0;
            left: 50%;
        }
        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        /* Menú Móvil */
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--azul-principal);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: all 0.5s ease;
                overflow-y: auto;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-item {
                width: 80%;
                text-align: center;
            }
            .nav-links > .nav-item > a {
                padding: 15px;
                display: block;
                width: 100%;
            }
            .submenu {
                position: static;
                width: 100%;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                background-color: rgba(0, 0, 0, 0.1);
                border-radius: 0;
            }
            .nav-item:hover .submenu {
                max-height: 500px;
            }
            .submenu a {
                color: white !important;
                justify-content: center;
            }
            .submenu a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }
        }
		
		
		
		 /* SECCIÓN HISTORIAS MEJORADA */
        .historias-container {
            padding: 30px 5%;
            background-color: #f8f9fa;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .historias-title {
            font-size: 28px;
            color: #094AC4;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 700;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        .historias-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #094AC4, #a5a7a9);
            border-radius: 3px;
        }
        .stories-outer {
            position: relative;
            padding: 0 40px;
        }
        .stories-wrapper {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 10px;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            mask-image: linear-gradient(
                to right,
                transparent 0%,
                black 40px,
                black calc(100% - 40px),
                transparent 100%
            );
        }
        .stories-wrapper::-webkit-scrollbar {
            display: none;
        }
        .story {
            flex: 0 0 160px;
            height: 220px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            scroll-snap-align: start;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            cursor: pointer;
            border: 3px solid transparent;
        }
        .story:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .story:hover .story-img {
            transform: scale(1.05);
        }
        .story-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px 10px 12px;
            font-weight: 600;
            text-align: center;
            font-size: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        /* EFECTO "VISTO" */
        .story-viewed {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 22px;
            height: 22px;
            background-color: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .story-viewed i {
            color: #094AC4;
            font-size: 12px;
        }
        .story.viewed .story-viewed {
            opacity: 1;
        }
        .story.viewed::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.2);
            border-radius: 13px;
        }
        
        /* FLECHAS DE NAVEGACIÓN */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 2;
            opacity: 0.9;
            transition: all 0.3s;
        }
        .nav-arrow:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }
        .nav-arrow.left {
            left: 0;
        }
        .nav-arrow.right {
            right: 0;
        }
        .nav-arrow i {
            color: #094AC4;
            font-size: 20px;
        }
        
        /* PUNTOS INDICADORES (opcional) */
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #d1d3d4;
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background-color: #094AC4;
            transform: scale(1.2);
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .story {
                flex: 0 0 130px;
                height: 190px;
            }
            .stories-outer {
                padding: 0 20px;
            }
            .nav-arrow {
                width: 30px;
                height: 30px;
            }
        }
		
/* FLECHAS SUPER MARCADAS (NUEVO ESTILO) */
 .nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon {
  position: relative;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff3d3d;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  box-shadow: 0 0 0 2px var(--azul-principal);
}

.user-menu-container {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 8px;
  display: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 2000;
}

.user-dropdown a {
  display: block;
  padding: 8px 12px;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.user-dropdown a:hover {
  background: #f0f0f0;
}

.user-menu-container:hover .user-dropdown {
  display: block;
}


/* FLECHAS AZULES INTENSAS (NUEVO ESTILO) */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #094AC4 0%, #094AC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 
        0 5px 15px rgba(5, 80, 196, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.8) inset;
    border: none;
    opacity: 0.95;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.nav-arrow i {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    left: 2px; /* Ajuste para centrar icono */
}

.nav-arrow.left i {
    left: -2px; /* Compensación para flecha izquierda */
}

.nav-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #094AC4 0%, #0c4ac1 100%);
    box-shadow: 
        0 7px 20px rgba(5, 80, 196, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.9) inset;
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 
        0 2px 10px rgba(5, 80, 196, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.8) inset;
}

.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}

/* Efecto de brillo al pasar el mouse */
.nav-arrow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-arrow:hover::after {
    opacity: 1;
}

 
        /* ANIMACIÓN DE HISTORIAS */
        @keyframes floatIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .story {
            animation: floatIn 0.6s ease-out forwards;
            opacity: 0;
        }
        .story:nth-child(1) { animation-delay: 0.1s; }
        .story:nth-child(2) { animation-delay: 0.2s; }
        .story:nth-child(3) { animation-delay: 0.3s; }
        .story:nth-child(4) { animation-delay: 0.4s; }
        .story:nth-child(5) { animation-delay: 0.5s; }
        .story:nth-child(6) { animation-delay: 0.6s; }
        .story:nth-child(7) { animation-delay: 0.7s; }
        .story:nth-child(8) { animation-delay: 0.8s; }

        /* EFECTO DE CARGA PARA HISTORIAS */
        .story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background-color: var(--azul-principal);
            z-index: 2;
            transition: width 3s linear;
        }
        .story:hover::before {
            width: 100%;
        }
		
		/* Scroll Progress Bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #094AC4;
  width: 0%;
  z-index: 9999;
  transition: width 0.25s ease;
}

/* Scroll suave para anclas */
html {
  scroll-behavior: smooth;
}

/* Modo oscuro */
body.dark-mode {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
body.dark-mode .navbar,
body.dark-mode .footer-villacorp {
  background: #111;
}
body.dark-mode a,
body.dark-mode .footer-contact a,
body.dark-mode .footer-list a {
  color: #c4d3f2;
}

    
  .modo-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 2000;
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  body.modo-oscuro {
    --azul-principal: #111;
    --azul-hover: #222;
    --gris-secundario: #aaa;
    --gris-claro: #333;
    background-color: #111 !important;
    color: #eee;
  }

  body.modo-oscuro .navbar,
  body.modo-oscuro .footer-villacorp {
    background-color: #111;
  }

  body.modo-oscuro .producto-card,
  body.modo-oscuro .valor-card,
  body.modo-oscuro .compania-card,
  body.modo-oscuro .story {
    background-color: #1f1f1f;
    color: #eee;
  }

  body.modo-oscuro .btn-primario {
    background-color: white;
    color: black;
  }

  body.modo-oscuro .btn-secundario {
    border-color: #aaa;
    color: #eee;
  }

  body.modo-oscuro .filtro-btn {
    border-color: #999;
    color: #eee;
  }

  body.modo-oscuro .filtro-btn.active {
    background: white;
    color: #000;
  }





  
/* ESTILOS PRESENTACIÓN */
.hero-presentacion {
  background: linear-gradient(135deg, #094AC4 0%, #094AC4 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-texto {
  flex: 1;
  z-index: 2;
}

.hero-imagen {
  flex: 1;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-titulo {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitulo {
  font-size: 1.5rem;
  color: #a5a7a9;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-descripcion {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-botones {
  display: flex;
  gap: 15px;
}

.btn-primario, .btn-secundario {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primario {
  background: #094AC4;
  color: #ffffff;
}

.btn-primario:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secundario {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secundario:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Sección Nuestra Compañía */
.compania-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.compania-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 50px;
  display: flex;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.compania-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #094AC4, #094AC4);
}

.compania-texto {
  flex: 2;
}

.titulo-seccion {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.titulo-seccion span {
  position: relative;
}

.titulo-seccion span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #094AC4, #a5a7a9);
}

.titulo-centrado {
  text-align: center;
}

.titulo-centrado span::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.compania-lema {
  font-size: 1.5rem;
  color: #094AC4;
  margin-bottom: 20px;
}

.compania-descripcion {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.compania-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(5, 80, 196, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(5, 80, 196, 0.1);
}

.stat-numero {
  font-size: 2.5rem;
  font-weight: 700;
  color: #094AC4;
  margin-bottom: 5px;
}

.stat-texto {
  color: #666;
  font-size: 0.9rem;
}

/* Sección Valores */
.valores-section {
  padding: 80px 0;
  background: white;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.valor-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #094AC4, #094AC4);
  transition: all 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(5, 80, 196, 0.1);
}

.valor-card:hover::before {
  height: 10px;
}

.valor-icono {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(5, 80, 196, 0.1) 0%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #094AC4;
}

.valor-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.valor-card p {
  color: #666;
  line-height: 1.6;
}

/* Animaciones */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-descripcion {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-botones {
    justify-content: center;
  }
  
  .compania-card {
    flex-direction: column;
  }
  
  .compania-stats {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-titulo {
    font-size: 2rem;
  }
  
  .hero-subtitulo {
    font-size: 1.2rem;
  }
  
  .compania-stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 15px;
  }
}

  /* FOOTER ESTILOS */
.footer-villacorp {
  background: linear-gradient(135deg, #094AC4 0%, #094AC4 100%);
  color: white;
  padding: 60px 0 0;
  position: relative;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15); /* <<< NUEVA SOMBRA */
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #a5a7a9;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: #a5a7a9;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-about {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: #094AC4;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* BOTÓN WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #094AC4;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  width: max-content;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}




/* ESTILOS PARA LA SECCIÓN MODERNA DE PRODUCTOS */
.productos-modernos {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.productos-modernos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: var(--azul-principal);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title span {
  color: var(--gris-secundario);
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.filtros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filtro-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filtro-btn:hover, .filtro-btn.active {
  background: white;
  color: var(--azul-principal);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.producto-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.producto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.producto-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.producto-card:hover .producto-img img {
  transform: scale(1.05);
}

.producto-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--azul-principal);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.producto-badge.destacado {
  background: #ff9800;
}

.producto-badge.oferta {
  background: #094AC4;
}

.producto-info {
  padding: 20px;
}

.producto-info h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.rating {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.rating span {
  color: #777;
  font-size: 0.8rem;
  margin-left: 5px;
}

.descripcion {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.precio {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul-principal);
  margin-bottom: 15px;
}

.precio-ant {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.btn-comprar {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-hover));
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-comprar:hover {
  background: linear-gradient(135deg, var(--azul-hover), var(--azul-principal));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(5, 80, 196, 0.3);
}

.ver-mas-container {
  text-align: center;
  margin-top: 30px;
}

.btn-ver-mas {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--azul-principal);
  color: var(--azul-principal);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ver-mas:hover {
  background: var(--azul-principal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(5, 80, 196, 0.2);
}

/* Efecto de carga */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.producto-card {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}

.producto-card:nth-child(1) { animation-delay: 0.1s; }
.producto-card:nth-child(2) { animation-delay: 0.2s; }
.producto-card:nth-child(3) { animation-delay: 0.3s; }
.producto-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .productos-grid {
    grid-template-columns: 1fr;
  }
}


.catalogo-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .catalogo-title {
    text-align: center;
    font-size: 28px;
    color: #094AC4;
    margin-bottom: 40px;
    position: relative;
  }

  .catalogo-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #094AC4, #a5a7a9);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
  }

  .catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .producto-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }

  .producto-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card-body {
    padding: 20px;
    text-align: center;
  }

  .card-body h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }

  .card-body p {
    font-size: 16px;
    color: #094AC4;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .card-body button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #094AC4, #094AC4);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .card-body button:hover {
    background: linear-gradient(135deg, #094AC4, #0c4ac1);
  }



/*  productos */
  .productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}

.producto-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.producto-card:hover {
  transform: translateY(-6px);
}

.producto-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f4f4f4;
  padding: 10px;
}

.producto-info {
  padding: 15px;
}

.producto-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.producto-info .descripcion {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.producto-info .precio {
  font-weight: bold;
  color: #0077c8;
  font-size: 16px;
  margin-bottom: 12px;
}

.btn-comprar {
  background: #0077c8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-comprar:hover {
  background: #005fa3;
}






/* Variante Android */
.btn-app--android i{
  font-size: 18px;
  color: #3DDC84; /* verde oficial Android */
}

/* (Opcional) un sutil glow al pasar el mouse */
.btn-app--android:hover{
  box-shadow: 0 10px 22px rgba(61, 220, 132, .35);
}



/*  productos */

/* --- Menú de usuario: versión compacta --- */
/* ↓↓↓ fuerza tamaño + padding del dropdown del usuario */
.navbar .nav-links .nav-icons .user-menu-container .user-dropdown { 
  font-size: 12px !important;      /* escala todo el contenido */
  line-height: 1.15 !important;
  min-width: 160px;
  padding: 4px 6px;
}

.navbar .nav-links .nav-icons .user-menu-container .user-dropdown a{
  display: block;
  font-size: 12px !important;      /* si arriba lo pisa algún 'a' global */
  padding: 4px 8px !important;
  letter-spacing: .1px;
  white-space: nowrap;
}

.navbar .nav-links .nav-icons .user-menu-container > i.fas.fa-user-circle{
  font-size: 18px !important;      /* iconito de usuario más chico */
}
<!-- Estilos de redes: pegar DESPUÉS de main.css -->
   /* Asegura layout básico de la barra */
  .navbar{display:flex;align-items:center;gap:16px}

  /* Contenedor entre logo e Inicio */
  .navbar .social-inline{
    display:flex;
    align-items:center;
    gap:8px;
    flex:1 1 auto;
    padding-left:8px;
    flex-wrap:wrap;
    overflow:hidden;
  }

  /* Píldoras */
  .navbar .social-inline .social-pill{
    display:inline-block;
    padding:6px 10px;
    line-height:1;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.6);
    background:rgba(255,255,255,.15);
    color:#fff !important;             /* fuerza texto blanco */
    text-decoration:none !important;    /* evita subrayado heredado */
    transition:transform .12s ease, background .12s ease, border-color .12s ease;
    white-space:nowrap;
  }
  .navbar .social-inline .social-pill:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.25);
    border-color:#fff;
  }

  /* Responsive: redes debajo del logo en móviles */
/* --- Ajuste responsive para las redes sociales --- */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar .social-inline {
    order: 2;
    width: 100%;
    justify-content: center;
    padding: 8px 0;
    gap: 6px;
  }

  /* 🔹 En pantallas pequeñas, fondo blanco y texto azul */
  .navbar .social-inline .social-pill {
    background: #fff !important;
    color: #0033ff !important;
    border: 1px solid #0033ff !important;
  }

  .navbar .social-inline .social-pill:hover {
    background: #0033ff !important;
    color: #fff !important;
  }
}


