/*====================================================
    CORDILLERA CIBERSEGURIDAD
    CATÁLOGO COMERCIAL
    comercial.css
====================================================*/


/*====================================================
                    MÓDULO 01
                    VARIABLES
====================================================*/

:root{

    /*==============================
            COLORES
    ==============================*/

    --primary:#0B4F8C;

    --primary-dark:#083B67;

    --secondary:#1E293B;

    --accent:#00A651;

    --danger:#D32F2F;

    --danger-dark:#B71C1C;

    --background:#F4F8FC;

    --surface:#FFFFFF;

    --surface-light:#F8FAFC;

    --text:#1F2937;

    --text-light:#64748B;

    --text-white:#FFFFFF;

    --border:#E5E7EB;


    /*==============================
            SOMBRAS
    ==============================*/

    --shadow-sm:0 3px 10px rgba(0,0,0,.05);

    --shadow-md:0 10px 28px rgba(0,0,0,.08);

    --shadow-lg:0 20px 45px rgba(0,0,0,.12);


    /*==============================
            RADIOS
    ==============================*/

    --radius-sm:8px;

    --radius-md:14px;

    --radius-lg:22px;

    --radius-xl:34px;


    /*==============================
            TAMAÑOS
    ==============================*/

    --container:1280px;

    --section-padding:110px;


    /*==============================
            TRANSICIONES
    ==============================*/

    --transition:.35s ease;

}



/*====================================================
                    MÓDULO 02
                    RESET
====================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:

        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background:var(--background);

    color:var(--text);

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}



/*====================================================
                FONDO GENERAL
====================================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    z-index:-2;

    background:

        radial-gradient(

            circle at top right,

            rgba(11,79,140,.05),

            transparent 35%

        ),

        radial-gradient(

            circle at bottom left,

            rgba(0,166,81,.05),

            transparent 40%

        ),

        linear-gradient(

            180deg,

            #F7FAFD,

            #EEF5FB

        );

}



/*====================================================
                ELEMENTOS BASE
====================================================*/

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}



/*====================================================
                CONTENEDOR
====================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}



/*====================================================
                SECCIONES
====================================================*/

section{

    position:relative;

    padding:var(--section-padding) 0;

}



/*====================================================
                TIPOGRAFÍA
====================================================*/

h1{

    font-size:3.4rem;

    line-height:1.15;

    font-weight:700;

}

h2{

    margin-bottom:20px;

    color:var(--secondary);

    font-size:2.5rem;

    line-height:1.2;

}

h3{

    color:var(--secondary);

    font-size:1.35rem;

}

h4{

    color:var(--secondary);

}

p{

    color:var(--text-light);

}



/*====================================================
                SECTION TITLE
====================================================*/

.section-title{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

    padding:8px 18px;

    border-radius:40px;

    background:#EAF3FF;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

}

.section-title p{

    margin-top:18px;

    font-size:1.05rem;

}



/*====================================================
                BOTONES
====================================================*/

.btn-primary,

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:15px 34px;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:var(--text-white);

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    background:var(--surface);

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:var(--text-white);

}



/*====================================================
                REVEAL
====================================================*/

.hidden{

    opacity:0;

    transform:translateY(45px);

    transition:

        opacity .7s ease,

        transform .7s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}
/*====================================================
                    MÓDULO 03
                    LOADER
====================================================*/

#loader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #062340,
        var(--primary)
    );

    z-index:99999;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-content{

    text-align:center;

    color:var(--text-white);

}

.loader-logo{

    width:140px;

    margin:0 auto 25px;

    animation:loaderFloat 3s ease-in-out infinite;

}

.loader-content h2{

    color:var(--text-white);

    margin-bottom:12px;

}

.loader-content p{

    margin-bottom:30px;

    color:rgba(255,255,255,.80);

}

.loader-bar{

    width:260px;

    height:8px;

    overflow:hidden;

    border-radius:20px;

    background:rgba(255,255,255,.15);

}

.loader-bar span{

    display:block;

    width:0;

    height:100%;

    background:var(--text-white);

    animation:loaderProgress 1.8s infinite;

}

@keyframes loaderProgress{

    0%{

        width:0;

    }

    50%{

        width:65%;

    }

    100%{

        width:100%;

    }

}

@keyframes loaderFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}



/*====================================================
                    MÓDULO 04
                    HEADER
====================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:var(--transition);

}

.header-scroll{

    background:rgba(255,255,255,.98);

    box-shadow:var(--shadow-md);

}



/*====================================================
                CONTENEDOR
====================================================*/

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:35px;

    min-height:82px;

}



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

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

    width:auto;

}



/*====================================================
                    NAVBAR
====================================================*/

.navbar{

    flex:1;

}

.navbar ul{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:34px;

}

.navbar a{

    position:relative;

    font-weight:600;

    color:var(--secondary);

    transition:var(--transition);

}

.navbar a:hover,

.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--primary);

    transition:var(--transition);

}

.navbar a:hover::after,

.navbar a.active::after{

    width:100%;

}



/*====================================================
                BOTONES HEADER
====================================================*/

.header-buttons{

    display:flex;

    align-items:center;

    gap:14px;

}

.btn-pdf{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 20px;

    border-radius:12px;

    background:var(--danger);

    color:var(--text-white);

    font-weight:600;

    transition:var(--transition);

}

.btn-pdf:hover{

    background:var(--danger-dark);

    transform:translateY(-2px);

}



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

.menu-toggle{

    display:none;

    justify-content:center;

    align-items:center;

    width:48px;

    height:48px;

    border-radius:12px;

    background:var(--primary);

    color:var(--text-white);

}

.menu-toggle i{

    font-size:1.6rem;

}
/*====================================================
                    MÓDULO 05
                        HERO
====================================================*/

.hero{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:140px 0 90px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(11,79,140,.88),
            rgba(8,59,103,.92)
        ),
        url("img/hero-background.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}



/*====================================================
                    OVERLAY
====================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:

        radial-gradient(
            circle at top right,
            rgba(255,255,255,.10),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(0,166,81,.10),
            transparent 35%
        );

    z-index:1;

}



/*====================================================
                CONTENIDO
====================================================*/

.hero-content{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    max-width:950px;

    animation:fadeHero .9s ease;

}



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

.hero-logo{

    width:180px;

    margin-bottom:35px;

    filter:drop-shadow(
        0 10px 30px rgba(0,0,0,.35)
    );

    animation:heroLogo 3s ease-in-out infinite;

}



/*====================================================
                    ETIQUETA
====================================================*/

.hero-tag{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    color:var(--text-white);

    font-size:.90rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}



/*====================================================
                    TÍTULO
====================================================*/

.hero h1{

    max-width:900px;

    margin-bottom:30px;

    color:var(--text-white);

    font-size:3.8rem;

    line-height:1.15;

}



/*====================================================
                    TEXTO
====================================================*/

.hero p{

    max-width:820px;

    margin-bottom:45px;

    color:rgba(255,255,255,.92);

    font-size:1.15rem;

}



/*====================================================
                BOTONES
====================================================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:55px;

}

.hero-buttons a{

    min-width:220px;

}



/*====================================================
                ACCIONES
====================================================*/

.hero-actions{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.hero-actions a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:14px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:var(--text-white);

    transition:var(--transition);

}

.hero-actions a:hover{

    background:rgba(255,255,255,.22);

    transform:translateY(-3px);

}

.hero-actions i{

    font-size:1.1rem;

}



/*====================================================
                ANIMACIONES
====================================================*/

@keyframes heroLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*====================================================
                    MÓDULO 06
                    EMPRESA
====================================================*/

.empresa{

    background:var(--surface);

}



/*====================================================
                GRID
====================================================*/

.empresa-grid{

    display:flex;

    flex-direction:column;

    gap:32px;

    margin-top:60px;

}



/*====================================================
                TARJETAS
====================================================*/

.empresa-card{

    position:relative;

    display:grid;

    grid-template-columns:120px minmax(0,1fr);

    align-items:start;

    gap:42px;

    overflow:hidden;

    padding:36px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:24px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:var(--transition);

}

.empresa-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(11,79,140,.18);

}



/*====================================================
            BORDE LATERAL
====================================================*/

.empresa-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:linear-gradient(

        180deg,

        var(--primary),

        #46A6FF

    );

}



/*====================================================
                ICONO
====================================================*/

.empresa-card i{

    display:flex;

    justify-content:center;

    align-items:center;

    width:78px;

    height:78px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #46A6FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:0 12px 28px rgba(11,79,140,.25);

    transition:var(--transition);

}

.empresa-card:hover i{

    transform:scale(1.12) rotate(-8deg);

}



/*====================================================
                TÍTULO
====================================================*/

.empresa-card h3{

    margin-bottom:15px;

    color:var(--secondary);

    font-size:1.45rem;

}



/*====================================================
                TEXTO
====================================================*/

.empresa-card p{

    margin-bottom:20px;

    line-height:1.8;

}



/*====================================================
                LISTA
====================================================*/

.empresa-card ul{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:10px;

}

.empresa-card li{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:8px 16px;

    border-radius:30px;

    background:#EAF3FF;

    color:var(--primary);

    font-size:.85rem;

    font-weight:600;

    transition:var(--transition);

}

.empresa-card li::before{

    display:none;

}

.empresa-card:hover li{

    background:var(--primary);

    color:var(--text-white);

}
/*====================================================
                    MÓDULO 07
                ¿POR QUÉ ELEGIRNOS?
====================================================*/

.why-us{

    background:var(--surface-light);

}



/*====================================================
                    GRID
====================================================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:32px;

    margin-top:60px;

}



/*====================================================
                    TARJETAS
====================================================*/

.why-card{

    position:relative;

    overflow:hidden;

    padding:38px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--accent)

    );

}



/*====================================================
                    ICONO
====================================================*/

.why-card i{

    display:flex;

    justify-content:center;

    align-items:center;

    width:72px;

    height:72px;

    margin-bottom:24px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #46A6FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:0 10px 28px rgba(11,79,140,.18);

    transition:var(--transition);

}

.why-card:hover i{

    transform:scale(1.12) rotate(-8deg);

}



/*====================================================
                    TÍTULO
====================================================*/

.why-card h3{

    margin-bottom:18px;

    color:var(--secondary);

    font-size:1.35rem;

}



/*====================================================
                    TEXTO
====================================================*/

.why-card p{

    color:var(--text-light);

    font-size:.98rem;

    line-height:1.8;

}



/*====================================================
                EFECTO PREMIUM
====================================================*/

.why-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    box-shadow:

        inset 0 0 0 1px rgba(59,166,255,.05);

    pointer-events:none;

}

.why-card:hover{

    border-color:rgba(59,166,255,.20);

}
/*====================================================
                    MÓDULO 08
                    METODOLOGÍA
====================================================*/

.metodologia{

    background:linear-gradient(

        180deg,

        #F8FAFC,

        #EEF5FC

    );

}



/*====================================================
                    TIMELINE
====================================================*/

.timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    margin-top:70px;

    align-items:start;

}



/*====================================================
                LÍNEA CENTRAL
====================================================*/

.timeline::before{

    content:"";

    position:absolute;

    top:60px;

    left:9%;

    width:82%;

    height:6px;

    border-radius:20px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #2E86DE,

        #59B8FF,

        #2E86DE,

        var(--primary)

    );

    opacity:.18;

    z-index:0;

}



/*====================================================
                TARJETA
====================================================*/

.timeline-card{

    position:relative;

    z-index:2;

    padding:32px 24px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:22px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:var(--transition);

}

.timeline-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(11,79,140,.20);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.timeline-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    border-radius:22px 22px 0 0;

    background:linear-gradient(

        90deg,

        var(--primary),

        #46A6FF

    );

}



/*====================================================
                    NÚMERO
====================================================*/

.timeline-number{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    justify-content:center;

    align-items:center;

    width:44px;

    height:44px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #2196F3

    );

    color:var(--text-white);

    font-weight:700;

    box-shadow:0 10px 30px rgba(11,79,140,.35);

    transition:var(--transition);

}



/*====================================================
                    ICONO
====================================================*/

.timeline-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:82px;

    height:82px;

    margin:20px auto 25px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #3BA3FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:0 12px 30px rgba(11,79,140,.20);

    transition:var(--transition);

}



/*====================================================
                EFECTOS
====================================================*/

.timeline-card:hover .timeline-icon{

    transform:scale(1.12) rotate(-8deg);

}

.timeline-card:hover .timeline-number{

    box-shadow:

        0 0 0 8px rgba(59,166,255,.18),

        0 10px 35px rgba(11,79,140,.40);

}



/*====================================================
                    TÍTULO
====================================================*/

.timeline-card h3{

    margin-bottom:16px;

    color:var(--secondary);

}



/*====================================================
                    TEXTO
====================================================*/

.timeline-card p{

    color:var(--text-light);

    font-size:.94rem;

    line-height:1.75;

}



/*====================================================
            APARICIÓN ESCALONADA
====================================================*/

.timeline-card{

    animation:timelineFade .7s ease both;

}

.timeline-card:nth-child(1){

    animation-delay:.10s;

}

.timeline-card:nth-child(2){

    animation-delay:.20s;

}

.timeline-card:nth-child(3){

    animation-delay:.30s;

}

.timeline-card:nth-child(4){

    animation-delay:.40s;

}

.timeline-card:nth-child(5){

    animation-delay:.50s;

}



@keyframes timelineFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*====================================================
                    MÓDULO 09
                    MODALIDADES
====================================================*/

.service-model{

    background:var(--surface);

}



/*====================================================
                    GRID
====================================================*/

.service-model-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}



/*====================================================
                    TARJETAS
====================================================*/

.service-model-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    padding:40px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.service-model-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.service-model-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #46A6FF

    );

}



/*====================================================
                    ICONO
====================================================*/

.service-model-card i{

    display:flex;

    justify-content:center;

    align-items:center;

    width:78px;

    height:78px;

    margin-bottom:24px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #3BA3FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:0 10px 28px rgba(11,79,140,.20);

    transition:var(--transition);

}

.service-model-card:hover i{

    transform:scale(1.12) rotate(-8deg);

}



/*====================================================
                    TÍTULO
====================================================*/

.service-model-card h3{

    margin-bottom:18px;

    color:var(--secondary);

    font-size:1.40rem;

}



/*====================================================
                    TEXTO
====================================================*/

.service-model-card p{

    margin-bottom:26px;

    color:var(--text-light);

    line-height:1.8;

}



/*====================================================
                    LISTA
====================================================*/

.service-model-card ul{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-top:auto;

}

.service-model-card li{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--text-light);

    font-weight:500;

}



/*====================================================
                CHECK
====================================================*/

.service-model-card li::before{

    content:"✓";

    display:flex;

    justify-content:center;

    align-items:center;

    width:24px;

    height:24px;

    border-radius:50%;

    background:rgba(0,166,81,.12);

    color:var(--accent);

    font-size:.80rem;

    font-weight:700;

    flex-shrink:0;

}



/*====================================================
                EFECTOS
====================================================*/

.service-model-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    box-shadow:

        inset 0 0 0 1px rgba(59,166,255,.05);

    pointer-events:none;

}

.service-model-card:hover{

    border-color:rgba(59,166,255,.20);

}



/*====================================================
            APARICIÓN ESCALONADA
====================================================*/

.service-model-card{

    animation:serviceFade .7s ease both;

}

.service-model-card:nth-child(1){

    animation-delay:.10s;

}

.service-model-card:nth-child(2){

    animation-delay:.25s;

}

.service-model-card:nth-child(3){

    animation-delay:.40s;

}



@keyframes serviceFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*====================================================
                    MÓDULO 10
                    CATÁLOGO
====================================================*/

.catalogo{

    background:linear-gradient(

        180deg,

        #F8FBFE,

        #EEF5FC

    );

}

/*====================================================
            CATALOGO - SERVICIOS
====================================================*/

.catalog-services{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    margin-top:60px;

}

.catalog-group{

    padding:28px;

    background:#FFFFFF;

    border-radius:20px;

    border:1px solid rgba(11,79,140,.08);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.catalog-group:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.catalog-group h3{

    margin-bottom:18px;

    color:var(--primary);

    font-size:1.15rem;

}

.catalog-group ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.catalog-group li{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text-light);

    font-weight:500;

}

.catalog-group li::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

    flex-shrink:0;

}

/*====================================================
                    GRID
====================================================*/

.catalog-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    margin-top:70px;

    align-items:stretch;

}



/*====================================================
                    TARJETA
====================================================*/

.catalog-card{

    position:relative;

    overflow:hidden;

    isolation:isolate;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:36px 24px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.catalog-card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,166,255,.25);

    box-shadow:

        0 15px 40px rgba(11,79,140,.12),

        0 0 0 1px rgba(59,166,255,.10),

        0 0 35px rgba(59,166,255,.15);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.catalog-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #2196F3,

        #59B8FF

    );

    transition:var(--transition);

}

.catalog-card:hover::before{

    height:8px;

}



/*====================================================
                    ICONO
====================================================*/

.catalog-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:84px;

    height:84px;

    margin-bottom:28px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #3BA3FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:

        0 12px 30px rgba(11,79,140,.20);

    transition:var(--transition);

}

.catalog-card:hover .catalog-icon{

    transform:scale(1.12) rotate(-8deg);

    box-shadow:

        0 18px 40px rgba(59,166,255,.35);

}



/*====================================================
                    TÍTULO
====================================================*/

.catalog-card h3{

    margin-bottom:18px;

    color:var(--secondary);

    font-size:1.35rem;

}



/*====================================================
                    TEXTO
====================================================*/

.catalog-card p{

    margin-bottom:24px;

    color:var(--text-light);

    font-size:.95rem;

    line-height:1.7;

}



/*====================================================
                    INSIGNIA
====================================================*/

.catalog-card span{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-top:auto;

    padding:9px 18px;

    border-radius:30px;

    background:#EAF3FF;

    color:var(--primary);

    font-size:.82rem;

    font-weight:700;

    transition:var(--transition);

}

.catalog-card:hover span{

    background:var(--primary);

    color:var(--text-white);

}



/*====================================================
                    FLECHA
====================================================*/

.catalog-card::after{

    content:"➜";

    position:absolute;

    right:22px;

    bottom:20px;

    color:#3BA3FF;

    font-size:1.2rem;

    opacity:0;

    filter:drop-shadow(

        0 0 12px rgba(59,166,255,.35)

    );

    transition:var(--transition);

}

.catalog-card:hover::after{

    opacity:1;

    transform:translateX(6px);

}



/*====================================================
            APARICIÓN ESCALONADA
====================================================*/

.catalog-card{

    animation:catalogFade .7s ease both;

}

.catalog-card:nth-child(1){

    animation-delay:.10s;

}

.catalog-card:nth-child(2){

    animation-delay:.20s;

}

.catalog-card:nth-child(3){

    animation-delay:.30s;

}

.catalog-card:nth-child(4){

    animation-delay:.40s;

}

.catalog-card:nth-child(5){

    animation-delay:.50s;

}



@keyframes catalogFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*====================================================
                    MÓDULO 11
                    SERVICIOS
====================================================*/

.service-card{

    position:relative;

    overflow:hidden;

    max-width:1400px;

    margin:40px auto;
    
    padding:42px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #46A6FF

    );

}



/*====================================================
                CABECERA
====================================================*/

.service-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:30px;

}



/*====================================================
                CÓDIGO
====================================================*/

.service-code{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:10px 18px;

    border-radius:30px;

    background:var(--primary);

    color:var(--text-white);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:.5px;

}



/*====================================================
                CATEGORÍA
====================================================*/

.service-category{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:10px 18px;

    border-radius:30px;

    background:#EAF3FF;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

}



/*====================================================
                TÍTULO
====================================================*/

.service-card h3{

    margin-bottom:20px;

    color:var(--secondary);

    font-size:1.8rem;

}



/*====================================================
                DESCRIPCIÓN
====================================================*/

.service-card p{

    margin-bottom:30px;

    color:var(--text-light);

    line-height:1.9;

}



/*====================================================
                GRID
====================================================*/

.service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:35px;

}



/*====================================================
                BLOQUES
====================================================*/

.service-block{

    padding:28px;

    background:#F8FBFE;

    border:1px solid rgba(11,79,140,.08);

    border-radius:18px;

}



/*====================================================
                SUBTÍTULO
====================================================*/

.service-block h4{

    margin-bottom:18px;

    color:var(--secondary);

}



/*====================================================
                LISTA
====================================================*/

.service-block ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.service-block li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:var(--text-light);

}



/*====================================================
                CHECK
====================================================*/

.service-block li::before{

    content:"✓";

    display:flex;

    justify-content:center;

    align-items:center;

    width:24px;

    height:24px;

    border-radius:50%;

    background:rgba(0,166,81,.12);

    color:var(--accent);

    font-size:.80rem;

    font-weight:700;

    flex-shrink:0;

}



/*====================================================
                BOTONES
====================================================*/

.service-actions{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-top:35px;

}
/*====================================================
                    MÓDULO 12
                    CONTACTO
====================================================*/

.contact{

    background:var(--surface);

}



/*====================================================
                    GRID
====================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}



/*====================================================
                    TARJETA
====================================================*/

.contact-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    padding:40px;

    background:var(--surface);

    border:1px solid rgba(11,79,140,.08);

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,166,255,.25);

    box-shadow:

        0 18px 45px rgba(11,79,140,.18);

}



/*====================================================
                BORDE SUPERIOR
====================================================*/

.contact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #46A6FF

    );

}



/*====================================================
                    ICONO
====================================================*/

.contact-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:78px;

    height:78px;

    margin-bottom:26px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--primary),

        #3BA3FF

    );

    color:var(--text-white);

    font-size:2rem;

    box-shadow:

        0 12px 30px rgba(11,79,140,.22);

    transition:var(--transition);

}

.contact-card:hover .contact-icon{

    transform:

        scale(1.12)

        rotate(-8deg);

}



/*====================================================
                    TITULO
====================================================*/

.contact-card h3{

    margin-bottom:18px;

    color:var(--secondary);

    font-size:1.35rem;

}



/*====================================================
                    TEXTO
====================================================*/

.contact-card p{

    margin-bottom:24px;

    color:var(--text-light);

    line-height:1.8;

}



/*====================================================
                    ENLACE
====================================================*/

.contact-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:auto;

    padding:12px 22px;

    border-radius:12px;

    background:#EAF3FF;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.contact-card a:hover{

    background:var(--primary);

    color:var(--text-white);

}



/*====================================================
                EFECTO PREMIUM
====================================================*/

.contact-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    box-shadow:

        inset 0 0 0 1px rgba(59,166,255,.05);

    pointer-events:none;

}
/*====================================================
                    MÓDULO 13
                    FOOTER
====================================================*/

.footer{

    position:relative;

    overflow:hidden;

    background:linear-gradient(

        180deg,

        #082B4A,

        #041A2E

    );

    color:var(--text-white);

}



/*====================================================
                CONTENEDOR
====================================================*/

.footer-content{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    gap:24px;

    padding:90px 0 45px;

}



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

.footer-logo{

    width:120px;

    filter:

        drop-shadow(

            0 12px 30px rgba(0,0,0,.35)

        );

}



/*====================================================
                TITULO
====================================================*/

.footer h3{

    color:var(--text-white);

    font-size:2rem;

}



/*====================================================
                TEXTO
====================================================*/

.footer p{

    max-width:700px;

    color:rgba(255,255,255,.75);

    line-height:1.9;

}



/*====================================================
            REDES SOCIALES
====================================================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:12px;

}

.footer-social a{

    display:flex;

    justify-content:center;

    align-items:center;

    width:54px;

    height:54px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:var(--text-white);

    font-size:1.25rem;

    transition:var(--transition);

}

.footer-social a:hover{

    background:var(--primary);

    transform:

        translateY(-5px)

        rotate(-8deg);

}



/*====================================================
                COPYRIGHT
====================================================*/

/*====================================================
                COPYRIGHT
====================================================*/

.footer-copy{

    width:100%;

    margin-top:28px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.10);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.footer-copy p{

    margin:6px 0;

    font-size:.90rem;

    color:rgba(255,255,255,.55);

    text-align:center;

}

/*====================================================
            EFECTO DECORATIVO
====================================================*/

.footer::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-120px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

        radial-gradient(

            rgba(59,166,255,.15),

            transparent 70%

        );

    pointer-events:none;

}

.footer::after{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:

        radial-gradient(

            rgba(0,166,81,.10),

            transparent 70%

        );

    pointer-events:none;

}
/*====================================================
                    MÓDULO 14
                    MODAL PDF
====================================================*/

.pdf-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:9999;

}

.pdf-modal.active{

    opacity:1;

    visibility:visible;

}



/*====================================================
                CONTENEDOR
====================================================*/

.pdf-modal-content{

    position:relative;

    display:flex;

    flex-direction:column;

    width:min(1200px,100%);

    max-height:92vh;

    overflow:hidden;

    background:var(--surface);

    border-radius:24px;

    box-shadow:

        0 25px 70px rgba(0,0,0,.35);

}



/*====================================================
                CERRAR
====================================================*/

.pdf-close{

    position:absolute;

    top:18px;

    right:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(0,0,0,.08);

    color:var(--secondary);

    font-size:1.2rem;

    transition:var(--transition);

    z-index:5;

}

.pdf-close:hover{

    background:var(--danger);

    color:var(--text-white);

}



/*====================================================
                CABECERA
====================================================*/

.pdf-header{

    padding:30px 40px;

    border-bottom:1px solid var(--border);

}

.pdf-header h2{

    margin-bottom:8px;

}

.pdf-header p{

    color:var(--text-light);

}



/*====================================================
                VISOR
====================================================*/

.pdf-viewer{

    flex:1;

    min-height:70vh;

}

.pdf-viewer iframe{

    width:100%;

    height:100%;

    min-height:70vh;

    border:none;

}



/*====================================================
                BOTONES
====================================================*/

.pdf-actions{

    display:flex;

    justify-content:flex-end;

    gap:18px;

    flex-wrap:wrap;

    padding:30px 40px;

    border-top:1px solid var(--border);

    background:#F8FBFE;

}
/*====================================================
                    MÓDULO 17
                RESPONSIVE GLOBAL
====================================================*/


/*====================================================
                NOTEBOOK
====================================================*/

@media (max-width:1200px){

    .catalog-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .timeline{

        grid-template-columns:repeat(3,1fr);

    }

}



/*====================================================
                TABLET
====================================================*/

@media (max-width:991px){

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.2rem;

    }

    section{

        padding:90px 0;

    }

    /*==========================
            HEADER
    ==========================*/

    .menu-toggle{

        display:flex;

    }

    .navbar{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        padding:25px;

        background:#FFF;

        box-shadow:var(--shadow-md);

        opacity:0;

        visibility:hidden;

        transform:translateY(-20px);

        transition:var(--transition);

    }

    .navbar.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);

    }

    .navbar ul{

        flex-direction:column;

        gap:22px;

    }

    /*==========================
            HERO
    ==========================*/

    .hero{

        min-height:auto;

        padding:170px 0 110px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons a{

        width:280px;

    }

    /*==========================
            EMPRESA
    ==========================*/

    .empresa-card{

        grid-template-columns:1fr;

        text-align:center;

    }

    .empresa-card i{

        margin:auto;

    }

    .empresa-card ul{

        justify-content:center;

    }

    /*==========================
            TIMELINE
    ==========================*/

    .timeline{

        grid-template-columns:repeat(2,1fr);

    }

    .timeline::before{

        display:none;

    }

    /*==========================
            GRID
    ==========================*/

    .why-grid,

    .service-model-grid,

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .catalog-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .service-grid{

        grid-template-columns:1fr;

    }

}



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

@media (max-width:768px){

    h1{

        font-size:2.3rem;

    }

    h2{

        font-size:1.9rem;

    }

    .section-title{

        margin-bottom:50px;

    }

    .hero-logo{

        width:140px;

    }

    .hero-actions{

        flex-direction:column;

    }

    .hero-actions a{

        width:100%;

        justify-content:center;

    }

    .timeline,

    .catalog-grid,

    .why-grid,

    .service-model-grid,

    .contact-grid{

        grid-template-columns:1fr;

    }

    .empresa-card,

    .timeline-card,

    .catalog-card,

    .service-model-card,

    .contact-card,

    .service-card{

        padding:30px;

    }

    .pdf-modal{

        padding:15px;

    }

    .pdf-header,

    .pdf-actions{

        padding:25px;

    }

    .pdf-actions{

        justify-content:center;

    }

    .back-to-top{

        width:52px;

        height:52px;

        right:20px;

        bottom:20px;

    }

}



/*====================================================
                MOBILE SMALL
====================================================*/

@media (max-width:480px){

    body{

        font-size:15px;

    }

    h1{

        font-size:2rem;

    }

    h2{

        font-size:1.65rem;

    }

    .container{

        width:94%;

    }

    .hero{

        padding-top:150px;

    }

    .btn-primary,

    .btn-secondary{

        width:100%;

    }

    .btn-pdf{

        padding:12px 18px;

    }

    .footer-content{

        padding:70px 0 35px;

    }

}

