:root {
           --primary-color: #1a365d;
            --secondary-color: #2c5282;
            --accent-color: #38a169;
            --success-color: #2ed63e;
            --warning-color: #5de53e;
            --light-color: #f7fafc;
            --dark-color: #1a202c;
            --text-light: #718096;
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            --gradient-accent: linear-gradient(135deg, #3ee543 0%, #0f44df 100%);
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Preloader Moderno */
        .site-preloader-wrap {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cssload-loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header Superior Moderno */
        .top-header-area {
            background: var(--gradient-primary);
            padding: 10px 0;
            color: white;
            font-size: 14px;
        }

        .top-header-area ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .top-header-area a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-header-area a:hover {
            color: var(--warning-color);
            transform: translateY(-2px);
        }

        .share-icons ul {
            justify-content: end;
            gap: 15px;
        }

        .share-icons a {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .share-icons a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Navegación Moderna */
        .navbar {
            background: white !important;
            padding: 15px 0;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-brand img {
            height: 60px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--primary-color) !important;
            padding: 10px 20px !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }

        /* Hero Section Moderno */
     /* Estilos personalizados para el slider */
        .slider-section {
            position: relative;
            width: 100%;
            height: 720px; /* Altura del slider */
            overflow: hidden;
        }

        .owl-carousel .item img {
            width: 100%;
            height: 720px;
            object-fit: cover;
            object-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.4); /* Capa oscura para mejorar la legibilidad del texto */
            z-index: 10; /* Asegura que el contenido esté sobre las imágenes */
        }
        
        .hero-content {
            color: white;
            text-align: center;
            padding: 20px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .btn-primary-custom {
            background-color: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #e53e3e; /* Un color de acento más oscuro */
        }
        /* WhatsApp Button Moderno */
        #whatsapp-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
        }

        #whatsapp-button a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--success-color);
            border-radius: 50%;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        #whatsapp-button a:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        #whatsapp-button img {
            width: 35px;
            height: 35px;
            filter: brightness(0) invert(1);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(56, 161, 105, 0); }
            100% { box-shadow: 0 0 0 0 rgba(56, 161, 105, 0); }
        }

        /* Secciones Modernas */
    .offer-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 100%;
            height: 0;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .offer-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
        }

        .offer-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 8px;
            font-weight: bold;
            z-index: 10;
        }

        .btn-primary-custom {
            background-image: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            background-image: var(--gradient-accent);
        }
        
        .section-modern {
            padding: 80px 0;
        }
        
        .section-title-modern {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title-modern h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .section-title-modern span {
            color: var(--primary-color);
        }
        
        .section-title-modern p {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .offer-card {
                padding-top: 75%;
            }
        }


        /* Cards de Productos */
        .product-card {
            background: white;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .product-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .product-card:hover .product-icon {
            background: var(--gradient-accent);
            transform: scale(1.1);
        }

        .product-icon i {
            font-size: 2rem;
            color: white;
        }

        .product-card h3 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Formulario Moderno */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
        }

        .form-control-modern {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-control-modern:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
            background: white;
        }

        /* Footer Moderno */
        .footer-modern {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-header-area ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .share-icons ul {
                justify-content: center;
                margin-top: 15px;
            }
            
            .section-modern {
                padding: 60px 0;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }

        /* Animaciones personalizadas */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal moderno */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: var(--shadow-heavy);
        }

        .modal-header {
            border-bottom: 1px solid #e2e8f0;
            padding: 20px 30px;
        }

        .modal-body {
            padding: 30px;
        }

        .search-form input {
            margin-bottom: 15px;
        }
		
		
		

        /* Popup Oy empieza*/
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Popup Content */
        .popup-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-heavy);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-content {
            transform: scale(1);
        }


      .popup-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .popup-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .popup-body {
            padding: 30px;
        }

        .popup-subtitle {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 30px;
            text-align: center;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .brand-card {
            background: white;
            border-radius: 15px;
            padding: 20px 10px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 140px;
            border: 1px solid #e2e8f0;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
        }

        .brand-logo {
            width: 80px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 12px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            filter: grayscale(0%);
        }

        .brand-name {
            font-weight: 600;
            color: #1a365d;
            font-size: 0.9rem;
            text-align: center;
        }

        .popup-footer {
            background: #f8fafc;
            padding: 20px;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            text-align: center;
        }

        .dont-show-container {
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dont-show-label {
            font-size: 0.9rem;
            color: #718096;
            margin-left: 8px;
            cursor: pointer;
        }

        /* Brands Grid */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .brand-card {
            background: white;
            border-radius: 15px;
            padding: 20px 10px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 140px;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .brand-logo {
            width: 80px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 12px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            filter: grayscale(0%);
        }

        .brand-name {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .popup-footer {
            background: #f8fafc;
            padding: 20px;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            text-align: center;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            background: var(--gradient-accent);
        }

        .dont-show-container {
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dont-show-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-left: 8px;
            cursor: pointer;
        }

        /* Demo button to show popup */
        .demo-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-medium);
        }

        .demo-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            background: var(--gradient-accent);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 15px;
            }
            
            .popup-title {
                font-size: 1.5rem;
            }
            
            .popup-body {
                padding: 20px;
            }
            
            .brand-card {
                height: 120px;
                padding: 15px 8px;
            }
            
            .brand-logo {
                width: 70px;
                height: 40px;
            }
        }
		
		/* estilofotter*/
		 .brand-card {
            background: white;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .brand-card img {
            max-height: 60px;
            max-width: 100%;
            object-fit: contain;
        }

        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 999;
            opacity: 0;
        }

        .back-to-top:hover {
            background: var(--gradient-accent);
            color: white;
            transform: translateY(-3px);
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .social-links {
                text-align: center !important;
                margin-top: 20px;
            }
        }
		
		
		
		/*  termina  */
		