* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
             --primary-color:#0d4c92;
            --secondary-color:#1f6ed4;
            --accent-color:#4aa3ff;
            --light-bg: #f5f7fa;
            --dark-text: #1a1a1a;
            --text-secondary: #666666;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
            padding-bottom: 0;
        }

        /* ==================== HEADER & NAV ==================== */
     /* ==================== HEADER ==================== */

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:#0d4c92;
    backdrop-filter:blur(10px);
    transition:all .35s ease;
}

header.scrolled{
    background:#ffffff;
    backdrop-filter:blur(15px);
    box-shadow:0 4px 20px rgba(0,0,0,.12);
}

/* ==================== NAV ==================== */

nav{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:10px 5%;
    max-width:1400px;
    margin:auto;
    width:100%;
}

/* ==================== LOGO ==================== */

.logo{
    position:relative;
    width:280px;   /* ajusta según tu logo */
    height:110px;
    display:block;
}

.logo img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Estado inicial */

.logo-white{
    opacity:1;
    visibility:visible;
}

.logo-blue{
    opacity:0;
    visibility:hidden;
}

/* Estado scroll */

header.scrolled .logo-white{
    opacity:0;
    visibility:hidden;
}

header.scrolled .logo-blue{
    opacity:1;
    visibility:visible;
}

/* ==========================================
   GLOBAL SECTION HEADERS
========================================== */

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-subtitle{
    display:block;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#64748b;
    margin-bottom:10px;
}

.section-title{
    font-size:clamp(2.2rem,5vw,2.6rem);
    font-weight:800;
    color:#1f3c88;
    margin-bottom:15px;
    line-height:1.2;
}

.section-description,
.section-header p{
    color:#475569;
    font-size:1.05rem;
    line-height:1.9;
    max-width:800px;
    margin:0 auto;
}

/* ==================== MENÚ ==================== */

nav {
    display: flex;
    flex-direction: row; /* CAMBIO: Asegura que el logo y el botón estén alineados horizontalmente */
    justify-content: space-between; /* Empuja el logo a la izquierda y el botón/menú a la derecha */
    align-items: center;
    padding: 10px 5%;
    max-width: 1400px;
    margin: auto;
    width: 100%;
    position: relative; /* Clave para el menú absoluto móvil */
}

.nav-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:1.8rem;
    list-style:none;
    margin-top:10px;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:400;
    font-size:.85rem;
    position:relative;
    transition:.3s;

}

/* Línea inferior */

.nav-links a::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:var(--secondary-color);
    transition:.3s;

}

.nav-links a:hover::after{
    width:100%;
}

/* ==================== SCROLL ==================== */

header.scrolled .nav-links a{
    color:#1f2937;
}

header.scrolled .nav-links a:hover{
    color:#0d4c92;
}

header.scrolled .nav-links a::after{
    background:#0d4c92;
}

/* ==================== MOBILE BUTTON ==================== */

.mobile-menu-btn{
    color:#ffffff;
    display:none;
}

header.scrolled .mobile-menu-btn{
    color:#1f2937;
}

/* ==================== RESPONSIVE MÓVIL (Línea 174 aprox) ==================== */
@media(max-width:768px){

    .logo{
        width: 180px; /* Reducimos el contenedor del logo en móvil para dar espacio */
        height: 70px;
    }

    .logo img{
        height: 100%;
    }

    .nav-links{
        display: none; /* Oculto por defecto */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Se despliega exactamente debajo del header */
        left: 0;
        width: 100%;
        background: #0d4c92;
        padding: 30px 20px;
        z-index: 99999; /* Aumentado para que flote sobre sliders y banners */
        gap: 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    /* Cuando JavaScript active la clase */
    .nav-links.active {
        display: flex !important;
    }

    .mobile-menu-btn{
        display: block !important; /* Forzamos que aparezca el icono ☰ */
        background: none;
        border: none;
        font-size: 2.2rem;
        cursor: pointer;
        color: #ffffff;
        z-index: 100000; /* Siempre por encima de la persiana del menú */
    }

    header.scrolled .mobile-menu-btn{
        color: #1f2937; /* Cambia a gris oscuro al hacer scroll */
    }

    .nav-links a { 
        color: white !important; 
        font-size: 1.1rem;
        display: block;
        text-align: center;
    }
}
       /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .hero-banner { height: 60vh; margin-top: 60px; }
            .hero-content h2 { font-size: 1.8rem; }
            
            /* Ajuste de Footer en Móvil */
            .sticky-footer {
                flex-direction: column;
                padding: 10px;
                height: auto;
                gap: 8px;
            }
            .footer-info-group {
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }
            .info-item { justify-content: center; font-size: 0.7rem; }
            .footer-logo { margin: 0; font-size: 1rem; }
        }

                
        /* ==================== BANNER PRINCIPAL - SPLIT LAYOUT ==================== */
        .hero-banner {
            margin-top: 60px;
            height: 100vh;
            display: flex;
            overflow: hidden;
            position: relative;
            background: #000;
        }
.hero-banner{
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}


        .hero-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 33.333%;

        }

        .hero-section.inactive {
            flex: 0.1;
            min-width: auto;
            overflow: hidden;
        }

        .hero-section.active {
            flex: 1;
        }
     
        .hero-section:nth-of-type(2) {
            background:
                linear-gradient(135deg, rgba(0,79,163,0.2), rgba(25,25,25,0.5)),
                url('../img/banner1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

        }

        .hero-section:nth-of-type(3) {
            background:
                linear-gradient(135deg, rgba(0,168,232,0.2), rgba(25,25,25,0.3)),
                url('../img/banner2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
           
        }
        .hero-section:nth-of-type(1) {
            background:
                linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,79,163,0.1)),
                url('../img/banner3.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            transition: var(--transition);
        }

        .hero-section:hover::before {
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
            z-index: 2;
            transition: var(--transition);
            opacity: 1;
        }

        .hero-section.inactive .hero-content {
            justify-content: flex-end;
            padding-bottom: 2rem;
            opacity: 0.8;
        }

        .hero-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .hero-section.inactive .hero-content h2 {
            font-size: 1.2rem;
            margin-bottom: 0;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            white-space: nowrap;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 500px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .hero-section.inactive .hero-content p {
            display: none;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-section.inactive .cta-button {
            display: none;
        }

                /* ==================== STICKY FOOTER UNIFICADO ==================== */
                
        .footer-logo img {
            max-height: 55px;
            transition: 0.3s ease;
        }

        .footer-logo:hover img {
            transform: scale(1.05);
        }
        .sticky-footer {
            position: fixed;
            bottom: -100px; /* Escondido inicialmente */
            left: 0;
            right: 0;
            background: #0d4c92;
            backdrop-filter: blur(15px);
            color: #ffffff;
            padding: 0.6rem 5%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
            transition: bottom 0.4s ease;
        }

        .sticky-footer.visible {
            bottom: 0 !important;
        }

        .footer-logo {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1f2937;
            text-decoration: none;
            margin-right: 20px;
        }

        .footer-info-group {
            display: flex;
            gap: 20px;
            font-size: 0.8rem;
            flex-grow: 1;
            justify-content: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #ffffff;
        }

        .info-item a{
            color: #ffffff;
            font-weight: 600;
            text-decoration:none;
        }
        .info-item:hover a{
            color: rgba(82,114,210,0.9);
            text-decoration:none;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
            color: white;
            font-size: 0.9rem;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }


                .page-banner{
            height:45vh;
            display:flex;
            align-items:center;
            justify-content:center;
            background:linear-gradient(135deg,#1a3a52,#0066cc);
            margin-top:70px;
            color:white;
            text-align:center;
        }

        .page-banner h1{
            font-size:3rem;
        }

        .content-section{
            padding:80px 8%;
        }

        .grid-gallery{
            display:grid;
            grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
            gap:25px;
            margin-top:40px;
        }

        .card-hover{
            position:relative;
            overflow:hidden;
            border-radius:15px;
            cursor:pointer;
            min-height:300px;
        }

        .card-hover img{
            width:100%;
            height:100%;
            object-fit:cover;
            transition:0.5s;
        }

        .card-overlay{
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.7);
            display:flex;
            justify-content:center;
            align-items:center;
            opacity:0;
            transition:0.5s;
            padding:20px;
            text-align:center;
        }

        .card-overlay h3{
            color:white;
            font-size:1.6rem;
        }

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

        .card-hover:hover .card-overlay{
            opacity:1;
        }

 
        /* 2. Ajuste de WhatsApp con animación de movimiento */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 100px; /* Sube un poco para que el footer no lo tape */
            right: 20px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            animation: bounce 2s infinite; /* Movimiento suave */
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); } /* Se mueve un poquito */
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 150px; /* Más arriba en móvil para no chocar con el footer expandido */
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
        }

         /* --- ESTILOS DE LA SECCIÓN categories--- */

                #categories-marcas {
            padding: 100px 20px;
            background: #f5f5f5;
            overflow: hidden;
            }

            .categories-container {
            max-width: 1400px;
            margin: auto;
            }

        .categories-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 900px;
            margin: 30px auto 70px;
        }

        .categories-title-wrap h2 {
            font-size: clamp(2.8rem, 5vw, 2.8rem);
            color: #1d3278;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .categories-text p {
            color: #475569;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 5px;
            margin-top: 2px;
            max-width: 100%;
        }

        .categoria-card {
            background: #fff;
            border-radius: 22px;
            padding: 25px;
            position: relative;
            box-shadow:  0 10px 25px rgba(0,0,0,0.06);
               transition:.35s;
            opacity: 0;
            transform: translateY(80px);
                min-height:420px;
        }

        .categoria-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .categoria-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0,0,0,0.12);
        }
        .categories-grid{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:30px;
        }

        .categoria-badge{
    display:inline-block;
    background:#0d4c92;
    color:white;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
                align-items:center;
                justify-items:center;
        }

        .logos-grid img {
             background:transparent !important;
            width: auto;
            max-width: 160px;
            max-height: 75px;
            height: auto;
            object-fit: contain;
            background: rgba(255,255,255,0.6);
            padding: 10px;
            border-radius: 5px;
            margin: auto;
            transition:.3s;
                filter:none;
                opacity:.70;
             }

        .logos-grid img:hover{
            filter:none;
            opacity:1;
            transform:scale(1.08);
        }

        /* TABLET */

        @media (max-width: 1200px){
    .categories-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

        @media (max-width: 992px) {
            .categories-header {
                grid-template-columns: 1fr;
            }
            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

        /* MOBILE */

        @media (max-width: 768px) {
            #categories-marcas {
                padding: 70px 15px;
            }
            .bg-title {
                top: -15px;
            }

            .categoria-card {
                padding: 55px 18px 25px;
            }

            .categoria-badge {
                left: 20px;
                font-size: 0.9rem;
                padding: 12px 18px;
            }

            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .logos-grid img {
                max-width: 100px;
                height: 55px;
            }

        }

        /* --- ESTILOS DE LA SECCIÓN COBERTURA --- */
        .seccion-cobertura {
            background-color: #f8fbff;/* Azul claro del fondo */
            padding: 60px 20px;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .cobertura-titulo {
            text-align: center;
                font-size: clamp(2.5rem, 5vw, 2.5rem);
                color: #000000;
                margin-bottom: 25px;
                font-weight: 700;
                letter-spacing: 1px;
        }

        /* --- CONTENEDOR DEL MAPA RESPONSIVO --- */
        .mapa-contenedor {
            position: relative;
            max-width: 1200px; /* Tamaño máximo sugerido */
            margin: 0 auto;
            display: inline-block;
            width: 100%;
        }

        .mapa-imagen {
            width: 100%;
            height: auto;
            display: block;
        }

        /* --- PUNTOS INTERACTIVOS (Ubicación por %) --- */
        .punto-interactivo {
            position: absolute;
            transform: translate(-50%, -50%); /* Centra el elemento en el punto exacto */
            cursor: pointer;
            z-index: 10;
        }

        /* Coordenadas aproximadas basadas en la imagen */
        .punto-tijuana { top: 11%; left: 22%; }
        .punto-juarez { top: 14%; left: 39%; }
        .punto-monterrey { top: 40%; left: 52%; }
        .punto-elpaso { top: 11%; left: 38%; }
        .punto-chihuahua { top: 25%; left: 40%; }
        .punto-leon { top: 63%; left: 50%; }

        /* Etiqueta de texto de la ciudad */
        .ciudad-label {
            position: absolute;
            white-space: nowrap;
            color: #2f3e79;
            font-size: 13px;
            font-weight: 600;
            pointer-events: none; /* Evita que estorbe al hacer click */
        }
        
        .punto-tijuana .ciudad-label { top: 6px; left: -7px; }
        .punto-juarez .ciudad-label { top: 2px; left: -25px; font-size: 14px; color: #792f3f; }
        .punto-monterrey .ciudad-label { bottom: -20px; left: -20px; }
        .punto-elpaso .ciudad-label { bottom: 8px; left: -26px; }
        .punto-chihuahua .ciudad-label { bottom: -18px; left: -24px; }
        .punto-leon .ciudad-label { bottom: 8px; left: -4px; }


        /* Icono/Logo de la empresa (Puntito) */
        .logo-marcador {
            width: 12px;
            height: 12px;
            background-color: #00aaff; /* Puedes cambiar esto por la ruta de tu logo: background-image: url('img/logo-icono.png'); */
            border: 2px solid #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 10px #00aaff;
            transition: transform 0.3s ease;
        }

        .punto-interactivo:hover .logo-marcador {
            transform: scale(1.3);
            background-color: #ffffff;
        }

        .logo-marcador{
    animation:pulse 3s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(0,170,255,.7);
    }

    70%{
        box-shadow:0 0 0 12px rgba(0,170,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(0,170,255,0);
    }
}

        /* --- VENTANA EMERGENTE (POPUP) --- */
        .popup-info {
            display: none; /* Oculto por defecto */
            position: absolute;
            background: linear-gradient(135deg, #0b2545, #134074);
            border: 2px solid #00aaff;
            border-radius: 8px;
            padding: 15px;
            width: 260px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            z-index: 100;
            text-align: left;
            color: #fff;
            transform: translate(-50%, -110%); /* Aparece arriba del punto */
        }

        /* Posicionamiento específico del popup para que no se corte en los bordes */
        .punto-tijuana .popup-info { transform: translate(-50%, -115%); top: 0; left: 0px; }
        .punto-juarez .popup-info { transform: translate(-50%, -115%); top: 0; left: 0; }
        .punto-leon .popup-info { transform: translate(-50%, -115%); top: 0; left: 0; }
        .punto-monterrey .popup-info { transform: translate(-50%, -115%); top: 0; left: 0; }
        .punto-chihuahua .popup-info { transform: translate(-50%, -115%); top: 0; left: 0; }
        .punto-elpaso .popup-info { transform: translate(-50%, -115%); top: 0; left: 0; }

        .popup-info h4 {
            margin: 0 0 8px 0;
            color: #7fceff;
            font-size: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 5px;
        }

        .popup-info p {
            margin: 0;
            font-size: 12px;
            line-height: 1.4;
            color: #e0e0e0;
        }

        /* Botón de cerrar para móviles */
        .btn-cerrar {
            float: right;
            cursor: pointer;
            color: #aaa;
            font-weight: bold;
            font-size: 14px;
        }
        .btn-cerrar:hover { color: #fff; }

        /* --- RESPONSIVIDAD (MÓVILES) --- */
        @media (max-width: 768px) {
            .ciudad-label { font-size: 11px; }
            .punto-juarez .ciudad-label { font-size: 12px; }
            .popup-info {
                width: 200px;
                padding: 10px;
            }
            .logo-marcador {
            width: 8px;
            height: 8px;
            }
            .popup-info p { font-size: 11px; }
            /* Ajuste de popups en móvil para que queden centrados */
            .punto-tijuana .popup-info { transform: translate(-20%, -110%); top: 0; left: 0; }
        }


 /* --- ESTILOS DE LA SECCIÓN  TIMELINE--- */
       .timeline-section {
            background-color: #fdfdfd;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
            padding: 25px 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        /* Contenedor principal de la línea */
        .timeline-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        /* Línea gris de fondo */
        .timeline-line {
            position: absolute;
            top: 52px; /* Alineado exactamente con el centro de los círculos */
            left: 4%;
            right: 4%;
            height: 4px;
            background-color: #486a8f;
            z-index: 1;
        }

        /* Elemento de cada punto */
        .timeline-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            z-index: 2;
            cursor: pointer;
        }

        .timeline-main-title {
                text-align: center;
                font-size: clamp(1.5rem, 5vw, 1.5rem);
                color: #1f3c88;
                margin-bottom: 30px;
                font-weight: 500;
                letter-spacing: 1px;
            }

        /* Títulos superiores */
        .timeline-title {
            font-size: 11px;
            font-weight: 500;
            color: #334155;
            margin-bottom: 14px;
            text-align: center;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .timeline-subtitle {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #334155;
            margin-bottom: 14px;
            text-align: center;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        /* Círculo indicador (Nodo) */
        .timeline-node {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #cbd5e1; 
            border: 4px solid #fff;
            box-shadow: 0 0 0 2px #cbd5e1;
            transition: all 0.3s ease;
        }

        /* Efectos Hover y Estado Activo */
        .timeline-item:hover .timeline-title,
        .timeline-item.active .timeline-title {
            color: #f57c00;
        }

        .timeline-item:hover .timeline-node,
        .timeline-item.active .timeline-node {
            background-color: #738fd8;
            box-shadow: 0 0 0 2px #738fd8;
            transform: scale(1.15);
        }

        /* Contenedor dinámico para la información inferior */
        .info-display-container {
            min-height: 100px;
            margin-top: 30px;
            display: flex;
            justify-content: flex-start;
            position: relative;
        }

        /* Cuadro de contenido (Tooltip / Popover inferior) */
        .info-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 20px;
            width: 100%;
            max-width: 680px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            display: none; /* Se controla por JS */
            position: absolute;
            left: 0;
            animation: fadeIn transform 0.4s ease;
            z-index: 9999;
        }

        .info-card.active {
            display: block;
        }

        /* Flecha decorativa superior de la tarjeta, alineada dinámicamente */
        .info-card::before {
            content: '';
            position: absolute;
            top: -10px;
            left: var(--arrow-left-pos, 45px);
            border-width: 0 10px 10px 10px;
            border-style: solid;
            border-color: transparent transparent #ffffff transparent;
            z-index: 3;
            transition: left 0.3s ease;
        }

        .info-card::after {
            content: '';
            position: absolute;
            top: -11px;
            left: var(--arrow-left-pos, 45px);
            border-width: 0 10px 10px 10px;
            border-style: solid;
            border-color: transparent transparent #e2e8f0 transparent;
            z-index: 2;
            transition: left 0.3s ease;
        }

        /* Contenido interno de la tarjeta */
        .info-content {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        /* Icono circular azul */
        .info-icon-wrapper {
            background-color: #1e3a8a;
            color: #ffffff;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        /* Representación SVG del icono de la imagen (Libro/Líneas de la empresa) */
        .info-icon-wrapper svg {
            width: 36px;
            height: 36px;
            fill: currentColor;
        }
        .info-logo {
           width: 42px;
            height: auto;
            object-fit: contain;
        }

        .info-text-block {
            flex: 1;
        }

        .info-card-title {
            font-size: 15px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
                    }

        .info-card-description {
            font-size: 11px;
            color: #64748b;
            line-height: 1.6;
            text-align: justify;
        }

        .highlight-text {
            font-weight: 500;
            color: #334155;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* Animación suave */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsividad básica */
        @media (max-width: 768px) {

    .timeline-section {
        padding: 60px 20px;
        overflow: visible;
    }

    /* CONTENEDOR GENERAL */

    .timeline-container {
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 22px;
        padding-left: 35px;
    }

    /* LINEA VERTICAL */
    .timeline-line {
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 14px;
        width: 3px;
        background: #dbe2ea;
        height: auto;
    }

    /* ITEMS */

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        width: 100%;
    }

    /* NODO */

    .timeline-node {
        width: 24px;
        height: 24px;
        min-width: 24px;
        border-radius: 50%;
        background: white;
        border: 3px solid #cbd5e1;
        position: relative;
        z-index: 5;
        flex-shrink: 0;
    }

    .timeline-item.active .timeline-node {
        border-color: #f97316;
        background: #fff7ed;
    }

    /* TEXTO */

    .timeline-title {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
        text-align: left;
        color: #1e293b;
    }

    /* CARD */

    .info-display-container {
        margin-top: 10px;
        min-height: auto;
        width: 100%;
    }

    .info-card {

        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        border-radius: 20px;
        padding: 22px;
        transform: none !important;
    }

    /* QUITAR FLECHITA */

    .info-card::before,
    .info-card::after {

        display: none;
    }

    /* CONTENIDO */

    .info-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .info-card-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .info-card-description {
        font-size: 13px;
        line-height: 1.8;
    }

}


 /* --- ESTILOS DE LA SECCIÓN  LINAS DE MANEJO--- */
            
            #productlines {
                padding: 90px 20px;
                background: #f4f6fb;
                overflow: hidden;
            }

            .lineas-container {
                max-width: 1400px;
                margin: auto;
            }

            .lineas-title {
                text-align: center;
                font-size: clamp(2.5rem, 5vw, 2.5rem);
                color: #1f3c88;
                margin-bottom: 60px;
                font-weight: 700;
                letter-spacing: 1px;
            }

            .lineas-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .linea-item {
                display: flex;
                align-items: center;
                gap: 15px;

                background: linear-gradient(90deg, #d9ddea, #c8cede);
                padding: 18px 22px;
                border-radius: 50px;

                box-shadow: 0 8px 20px rgba(0,0,0,0.08);

                transition:
                    transform 0.4s ease,
                    box-shadow 0.4s ease,
                    background 0.4s ease;

                opacity: 0;
                transform: translateY(60px);
            }

            .linea-item.active {
                opacity: 1;
                transform: translateY(0);
            }

            .linea-item:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 30px rgba(0,0,0,0.12);
                background: linear-gradient(90deg, #dfe4f2, #d2d8e8);
            }

            .linea-item i {
                width: 50px;
                height: 50px;
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #1f3c88;
                font-size: 1.2rem;
                flex-shrink: 0;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .linea-item span {
                color: #1f3c88;
                font-size: 1.05rem;
                font-weight: 700;
                line-height: 1.2;
            }

            /* TABLET */
            @media (max-width: 992px) {
                .lineas-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

            }

            /* MOBILE */
            @media (max-width: 768px) {
                #productlines {
                    padding: 70px 15px;
                }

                .lineas-grid {
                    grid-template-columns: 1fr;
                    gap: 18px;
                }

                .linea-item {
                    padding: 16px 18px;
                    border-radius: 25px;
                }

                .linea-item span {
                    font-size: 0.95rem;
                }

                .linea-item i {
                    width: 45px;
                    height: 45px;
                    font-size: 1rem;
                }

            }

             /* --- ESTILOS DE LA SECCIÓN customers --- */

            #customers {
                padding: 100px 20px 10px;
                background:linear-gradient(
                180deg,
                #ffffff,
                #f5f9ff
                );
                overflow:hidden;
            }
                
            .customers-header {
                text-align: center;
                max-width: 850px;
                margin: 0 auto 70px;
            }

            .customers-subtitle {
                display: block;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 2px;
                color: #64748b;
                margin-bottom: 1px;
            }

            .customers-title {
                text-align: center;
                font-size: clamp(2.5rem, 5vw, 2.5rem);
                color: #1f3c88;
                margin-bottom: 3px;
                font-weight: 700;
                letter-spacing: 1px;
            }

            .customers-text {
                color: #475569;
                font-size: 1.05rem;
                line-height: 1.8;
            }

            .customers-slider {
                position: relative;
                overflow: hidden;
            }

            .customers-track {
                display: flex;
                align-items: center;
                gap: 35px;
                width: max-content;
                animation: scrollcustomers 35s linear infinite;
            }

            .cliente-item {
                width:220px;
                height: 120px;
                background: white;
                border-radius: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 5px;
                border:2px solid #e2e8f0;
                transition: .35s ease;
                position:relative;
            }

            .cliente-item:hover {
                transform: translateY(-8px);
                box-shadow:
                    0 18px 35px rgba(0,0,0,0.1);
            }

            .cliente-item::before{
            content:"";
            position:absolute;
            inset:0;
            border-radius:24px;
            background:linear-gradient(
                135deg,
                rgba(13,76,146,.03),
                rgba(13,76,146,0)
            );
            opacity:0;
            transition:.35s;
            }
            .cliente-item:hover::before{
            opacity:1;
            }

            .cliente-item img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                opacity: .75;
                transition:,35s;
            }

            .cliente-item:hover img {
                opacity: 1;
                transform: scale(1.08);
            }

        .cliente-item:nth-child(odd){
        width:220px;
        }

        .cliente-item:nth-child(even){
        width:300px;
        }

            @keyframes scrollcustomers {
                from {
                    transform: translateX(0);
                }
                to {
                    transform: translateX(-50%);
                }

            }

            /* TABLET */
            @media (max-width: 992px) {
                .cliente-item {
                    width: 180px;
                    height: 100px;
                }

            }

            /* MOBILE */
            @media (max-width: 768px) {
                #customers {
                    padding: 70px 15px;
                }
                .customers-track {
                    gap: 20px;
                }
                .cliente-item {
                    width: 150px;
                    height: 85px;
                    padding: 18px;
                    border-radius: 18px;
                }

            }

 /* --- ESTILOS DE LA SECCIÓN DISTRIBUIDORES --- */

       /*=====================================
AUTHORIZED DISTRIBUTORS
=====================================*/

.brands-section{
    padding:100px 8%;
    background:#ffffff;
}

.brands-section .section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.brands-section .section-header p{
    margin-top:15px;
    color:#666;
    line-height:1.8;
}

/* Logos */

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.brand-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.4s;
    text-align:center;
}

.brand-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.brand-logo{

    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    border-bottom:1px solid #ececec;
}

.brand-logo img{
    max-width:150px;
    max-height:70px;
    object-fit:contain;
}

.brand-card img{
    max-width:160px;
    max-height:80px;
    object-fit:contain;
    filter: none;
    opacity:.75;
    transition:.4s ease;
}

.brand-card:hover img{
    filter:none;
    opacity:1;
}

.brand-product{
    height:180px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;

}

.brand-product img{
    width:100%;
    height:100%;
    transition:.8s;
}

.brand-card:hover .brand-product img{
    transform:scale(1);
}

.brand-content{
    padding:25px;
    text-align:center;
}

.brand-content h3{
    text-align:center;
    color:#0d4c92;
    margin-bottom:18px;

}

.brand-content ul{
    display: flex;
  flex-direction: column;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;

}

.brand-content li{
    border:none;
    background:#f5f7fa;
    padding:8px 14px;
    border-radius:30px;
    font-size:.9rem;
    display: block;
}

.brand-content li:last-child{
    border-bottom:none;
}

@media(max-width:992px){
    .brands-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .brands-grid{
        grid-template-columns:1fr;
    }
}

/* =========================================
   aboutus SECTION NUEVA
========================================= */

.aboutus-section{
padding:70px 20px 20px;
    background: #f8fafc;
    overflow: hidden;
}

.aboutus-container{
    max-width: 1400px;
    margin: auto;
}

/* HEADER */

.aboutus-header{
    text-align: center;
    margin-bottom: 70px;
}

.aboutus-title{
    font-size: clamp(2.5rem,5vw,2.8rem);
    color: #0d4c92;
    font-weight: 800;
    margin-bottom: 35px;
}



/* BANNER */

.aboutus-banner{
        width: 100%;
    max-width: 1100px;
    height: 280px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.aboutus-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* IMAGE 

.aboutus-image{
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.aboutus-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.aboutus-image:hover img{
    transform: scale(1.05);
}*/



/* CONTENT */

.aboutus-content h3{
    font-size: 2rem;
    color: #0d4c92;
    margin-bottom: 20px;
    font-weight: 700;
}

.aboutus-content p{
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* FULL TEXT */

.aboutus-grid{
    display:block;
    padding: 0 0 35px 0;
} 

.aboutus-full-text{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}
.aboutus-full-text:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.aboutus-full-text h3{
    font-size:2rem;
    color:#0d4c92;
    margin-bottom:20px;
    text-align:center;
}

.aboutus-full-text p{
    color:#475569;
    line-height:1.9;
    font-size:1.05rem;
    text-align:justify;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .aboutus-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .aboutus-grid.reverse .aboutus-image{
        order: 1;
    }

    .aboutus-grid.reverse .aboutus-content{
        order: 2;
    }

    .aboutus-banner{
        height: 220px;
    }

}

@media(max-width: 768px){

    .aboutus-section{
        padding: 70px 15px;
    }

    .aboutus-title{
        font-size: 2.2rem;
    }

    .aboutus-banner{
        height: 180px;
        border-radius: 18px;
    }

    .aboutus-content h3{
        font-size: 1.6rem;
    }

    .aboutus-content p,
    .aboutus-full-text p{
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .aboutus-full-text{
        padding: 25px;
    }

}

/* ===============================
   GALERÍA CORPORATIVA
================================= */

.galeria-section{
    padding:30px 60px;
    background:#f8fafc;
    overflow:hidden;
}

.galeria-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.galeria-track{
    display:flex;
    width:max-content;
    animation: scrollGaleria 40s linear infinite;
    gap:20px;
}

.galeria-slider:hover .galeria-track{
    animation-play-state: paused;
}

.foto-item{
    width:280px;
    height:180px;
    flex-shrink:0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s ease;
}

.foto-item:hover{
    transform:translateY(-8px);
}

.foto-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.foto-item:hover img{
    transform:scale(1.08);
}

@keyframes scrollGaleria{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


.page-banner{
    height:280px;
    background:
        linear-gradient(rgba(13,76,146,.55), rgba(13,76,146,.65)),
        url('../img/aboutus-1.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.banner-overlay{
    color:#fff;
}

.banner-overlay h1{
    font-size:3rem;
    margin-bottom:10px;
}

.banner-overlay p{
    font-size:15px;
}

.contact-section{
    padding:100px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
     align-items:stretch;
}

.contact-infos{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.infos-item{
    padding:20px;
    font-size:14px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.09);
}

.infos-item a{
        color:rgba(0, 56, 132, 0.95);
        font-weight: 700;
        text-decoration:none;
}
.infos-item:hover a{
            color: rgba(115,143,216,0.9);
            text-decoration:none;
        }

.map-section{
    width:100%;
    padding:0;
    margin-top:40px;
}

.map-section iframe{
    width:100%;
    height: 100%;
    min-height:450px;
    border:none;
    display:block;
    border-radius:15px;
}


.typing{
    overflow:hidden;
    white-space:nowrap;
    border-right:3px solid white;
    display:inline-block;
    width:0;
    
    animation:
        typing 4s steps(60,end) forwards,
        blink .8s infinite;
}

@keyframes typing{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}

@keyframes blink{
    50%{
        border-color:transparent;
    }
}
.fade-up{
    opacity:0;
    transform:translateY(40px);
}
.slide.active .fade-up{
    animation:fadeUp .8s ease forwards;
}
.slide.active .delay-1{
    animation-delay:1s;
}
.slide.active .delay-2{
    animation-delay:1.5s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media (max-width:768px){

    .typing{
        white-space:normal;
        border-right:none;
    }

}


/*=========================================
HERO EMPRESA B
=========================================*/

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.5s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:5;
    text-align:center;
    color:white;
    width:90%;
    max-width:1000px;
}

.slide-content h1{
    font-size:clamp(2rem, 4vw, 3rem);
    margin-bottom:20px;
    text-transform:uppercase;
}

.slide-content h3{
    font-size:1.6rem;
    margin-bottom:20px;
    font-weight:400;
}

.slide-content p{
    font-size:1.15rem;
    max-width:700px;
    margin:auto;
}

.slider-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}



.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.dot:hover{
    transform:scale(1.2);
}

.dot.active{
    background:white;
    box-shadow:0 0 10px rgba(255,255,255,.8);
}

@media(max-width:768px){

    .slide-content h1{
         font-size:clamp(1.8rem, 7vw, 2.8rem);
        line-height:1.2;
    }
    .slide-content h3{
        font-size:1rem;
    }
    .slide-content p{
        font-size:.95rem;
    }
}



/*=====================================
PRODUCT LINES - COMPACTO CON ICONO A LA DERECHA
=====================================*/

.product-lines {
    padding: 80px 8%;
    background: #f5f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.product-lines .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.product-lines .section-header .section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d4c92;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-lines .section-header h2.section-title {
    font-size: 2.3rem;
    color: #0d4c92;
    margin: 0;
}

.product-lines .section-header p {
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Grícula principal de 4 columnas */
.categorys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 70px; /* Reducido para juntar más los elementos */
}

/* Cápsula optimizada: Más delgada, con borde azul e intercambio de posiciones */
.categorys-item-capsule {
    background: #ffffff; 
    border: 2px solid #0d4c92; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center; /* Mantiene el bloque centrado dentro de la cápsula */
    padding: 8px 15px; /* Ajuste de empaque interno */
    box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
    transition: all .3s ease;
    cursor: pointer;
}
/* El truco de la uniformidad: un ancho máximo controlado */
.categorys-item-capsule .item-text {
    color: #0d4c92; 
    font-size: 0.9rem; 
    font-weight: 600;
    text-align: left; /* El texto se lee hacia la izquierda de forma natural */
    line-height: 1.2;
    width: 155px; /* Ancho fijo para que TODAS las columnas midan igual y los iconos se alineen perfectamente */
    white-space: normal; /* Permite que textos largos pasen a dos líneas limpiamente */
    transition: all .3s ease;
}

/* Efecto llamativo de Hover (Sombra azulada y elevación ligera) */
.categorys-item-capsule:hover {
    transform: translateY(-3px);
    background-color: #0d4c92; /* Invierte el fondo a azul al hacer hover */
    box-shadow: 0 8px 20px rgba(13, 76, 146, 0.25);
}

/* Contenedor del Icono (Círculo azul a la derecha) */
.categorys-item-capsule .icon-wrapper {
    background: #0d4c92; /* Círculo azul por defecto */
    width: 50px;  /* Reducido de 42px a 32px */
    height: 50px; /* Reducido de 42px a 32px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px; /* Margen cambiado a la izquierda */
    flex-shrink: 0;
    transition: all .3s ease;
    margin-right: 17px;
}

/* Icono interno */
.categorys-item-capsule .icon-wrapper i {
    color: #ffffff; /* Icono blanco por defecto */
    font-size: 0.9rem; /* Un poco más pequeño e integrado */
    transition: all .3s ease;
}

/* Animación y cambio de colores en el Hover del contenedor e icono */
.categorys-item-capsule:hover .icon-wrapper {
    background: #ffffff; /* El círculo se vuelve blanco */
    transform: scale(1.05);
}

.categorys-item-capsule:hover .icon-wrapper i {
    color: #0d4c92; /* El icono se vuelve azul */
}

/* Texto de la izquierda */
.categorys-item-capsule .item-text {
    color: #0d4c92; /* Azul por defecto */
    font-size: 0.9rem; /* Reducido de 1rem a 0.9rem */
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
    transition: all .3s ease;
}

/* El texto cambia a blanco cuando la tarjeta se vuelve azul en el hover */
.categorys-item-capsule:hover .item-text {
    color: #ffffff;
}

/*=====================================
RESPONSIVE DESIGN
=====================================*/
@media(max-width: 1200px){
    .categorys-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 992px){
    .categorys-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .categorys-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}



.footer-bottom{
    text-align:center;
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:12px;
    color:#cbd5e1;
}

.footer-tagline{
    text-align:center;
    margin-top:8px;
    font-size:13px;
    color:#94a3b8;
}

