/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f8fc;
    color:#071a35;
}



/* =========================
   VARIABLES
========================= */

:root{

    --azul-oscuro:#061a36;
    --azul-profundo:#08264f;
    --azul:#0b4f91;

    --celeste:#00b9f2;
    --celeste-claro:#64e7ff;

    --morado:#655cff;

    --gris:#66768f;
    --gris-suave:#eef5fb;

    --blanco:#ffffff;

}



/* =========================
   HEADER
========================= */

.header{

    width:100%;

    position:absolute;
    top:0;
    left:0;

    z-index:100;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:32px 70px;

}

.logo img{
    width:210px;
    display:block;
}

.menu{

    display:flex;
    align-items:center;
    gap:36px;

}

.menu a{

    color:white;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.3s;

}

.menu a:hover{
    color:var(--celeste-claro);
}

.btn-header{

    text-decoration:none;

    color:white;
    font-weight:800;

    padding:16px 30px;

    border-radius:100px;

    background:linear-gradient(135deg,var(--celeste),var(--morado));

    box-shadow:0 18px 45px rgba(0,185,242,.22);

    transition:.35s;

}

.btn-header:hover{
    transform:translateY(-4px);
}



/* =========================
   HERO
========================= */

.landing-hero{

    min-height:780px;

    position:relative;

    overflow:hidden;

    display:flex;
    align-items:center;

    padding:180px 70px 110px;

    color:white;

    background:
    linear-gradient(
        90deg,
        rgba(2,12,32,.98) 0%,
        rgba(4,18,40,.94) 40%,
        rgba(0,185,242,.10) 100%
    ),
    url("../images/servicios-hero.png") center right / cover no-repeat;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 85% 18%, rgba(100,231,255,.22), transparent 34%),
    linear-gradient(
        135deg,
        transparent 72%,
        rgba(0,185,242,.24) 72%,
        rgba(101,92,255,.38) 100%
    );

    pointer-events:none;

}

.landing-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.breadcrumb{

    display:flex;
    gap:10px;
    flex-wrap:wrap;

    margin-bottom:34px;

    font-size:14px;

    color:rgba(255,255,255,.76);

}

.breadcrumb a{

    color:rgba(255,255,255,.76);
    text-decoration:none;

}

.hero-subtitle,
.section-label{

    display:inline-block;

    color:var(--celeste-claro);

    font-size:14px;
    font-weight:900;

    letter-spacing:3px;

    text-transform:uppercase;

}

.landing-hero h1{

    margin-top:20px;
    margin-bottom:26px;

    font-size:78px;
    line-height:1.02;

    font-weight:900;

}

.landing-hero p{

    max-width:620px;

    font-size:18px;
    line-height:1.8;

    color:rgba(255,255,255,.82);

}

.hero-features{

    display:flex;
    flex-wrap:wrap;

    gap:20px 34px;

    margin-top:36px;

}

.hero-feature{

    display:flex;
    align-items:center;
    gap:12px;

}

.feature-icon{

    color:var(--celeste-claro);
    font-size:18px;

}

.hero-feature p{

    font-size:15px;
    line-height:1.5;
    color:white;

}

.hero-buttons{

    display:flex;
    flex-wrap:wrap;

    gap:18px;

    margin-top:42px;

}



/* =========================
   BOTONES
========================= */

.btn-primary,
.btn-secondary,
.btn-white,
.btn-small{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    border-radius:100px;

    transition:.35s;

    font-weight:800;

}

.btn-primary{

    color:white;

    padding:18px 34px;

    background:linear-gradient(135deg,var(--celeste),var(--morado));

    box-shadow:0 18px 45px rgba(0,185,242,.22);

}

.btn-secondary{

    color:white;

    padding:17px 34px;

    border:1px solid rgba(255,255,255,.35);

    backdrop-filter:blur(14px);

}

.btn-white{

    background:white;
    color:var(--azul-oscuro);

    padding:18px 38px;

}

.btn-small{

    padding:14px 26px;

    color:white;

    background:linear-gradient(135deg,var(--azul-profundo),var(--azul));

    margin-top:28px;

    font-size:14px;

}

.btn-primary:hover,
.btn-secondary:hover,
.btn-white:hover,
.btn-small:hover{

    transform:translateY(-4px);

}



/* =========================
   ACREDITACION
========================= */

.service-accreditation{

    margin-top:-54px;

    position:relative;
    z-index:20;

    padding:0 70px;

}

.accreditation-card{

    background:white;

    border-radius:30px;

    padding:34px 40px;

    display:grid;
    grid-template-columns:90px 1fr auto;
    gap:30px;

    align-items:center;

    box-shadow:0 20px 60px rgba(6,26,54,.12);

}

.accreditation-icon{

    width:78px;
    height:78px;

    border-radius:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
    font-weight:900;

    color:var(--celeste);

    background:rgba(0,185,242,.08);

}

.accreditation-content h3{

    color:var(--azul-oscuro);

    font-size:28px;

    margin-bottom:12px;

}

.accreditation-content p{

    color:var(--gris);

    line-height:1.7;

}

.accreditation-code{

    color:var(--celeste);

    font-weight:900;

    font-size:14px;

}



/* =========================
   INTRO
========================= */

.landing-intro{

    padding:100px 70px 70px;

    text-align:center;

}

.intro-content{

    max-width:920px;
    margin:auto;

}

.intro-content h2,
.section-title h2{

    margin:20px 0;

    color:var(--azul-oscuro);

    font-size:52px;
    line-height:1.15;

}

.intro-content p,
.section-title p{

    color:var(--gris);

    font-size:18px;
    line-height:1.8;

}



/* =========================
   SERVICE BLOCKS
========================= */

.service-lines{

    padding:0 70px 110px;

}

.service-block{

    background:white;

    border-radius:34px;

    overflow:hidden;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:stretch;

    margin-bottom:34px;

    box-shadow:0 22px 60px rgba(6,26,54,.08);

}

.service-block-reverse .service-block-image{
    order:2;
}

.service-block-reverse .service-block-content{
    order:1;
}

.service-block-image{

    min-height:420px;

}

.service-block-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.service-block-content{

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.service-icon{

    width:72px;
    height:72px;

    border-radius:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    margin-bottom:22px;

    background:rgba(0,185,242,.08);

}

.service-kicker{

    color:var(--celeste);

    font-size:14px;
    font-weight:900;

    letter-spacing:2px;

    text-transform:uppercase;

}

.service-block-content h3{

    color:var(--azul-oscuro);

    font-size:48px;
    line-height:1.1;

    margin:18px 0 20px;

}

.service-block-content p{

    color:var(--gris);

    line-height:1.8;

    font-size:17px;

}

.service-block-content ul{

    list-style:none;

    margin-top:26px;

}

.service-block-content li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:var(--azul-oscuro);

    line-height:1.6;

}

.service-block-content li::before{

    content:"•";

    position:absolute;
    left:0;
    top:0;

    color:var(--celeste);

    font-size:28px;

    line-height:1;

}



/* =========================
   DIFERENCIALES
========================= */

.service-differentials{

    padding:110px 70px;

    background:linear-gradient(
        135deg,
        var(--azul-oscuro),
        var(--azul-profundo)
    );

    color:white;

}

.service-differentials .section-title h2{
    color:white;
}

.differentials-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:70px;

}

.differential-item{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:36px;

    backdrop-filter:blur(10px);

}

.differential-item span{

    color:var(--celeste-claro);

    font-size:46px;
    font-weight:900;

}

.differential-item h3{

    font-size:24px;

    margin:18px 0 16px;

}

.differential-item p{

    color:rgba(255,255,255,.76);

    line-height:1.8;

}



/* =========================
   PROCESS
========================= */

.process-section{

    padding:110px 70px;

    background:white;

}

.section-title{

    max-width:920px;
    margin:auto auto 70px;

    text-align:center;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.process-step{

    padding:34px 26px;

    border-radius:28px;

    background:#f8fbff;

    border:1px solid rgba(8,38,79,.08);

    text-align:center;

}

.process-step span{

    width:58px;
    height:58px;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;

    margin-bottom:22px;

    color:white;
    font-weight:900;

    background:linear-gradient(
        135deg,
        var(--azul-profundo),
        var(--celeste)
    );

}

.process-step h3{

    color:var(--azul-oscuro);

    font-size:22px;

    margin-bottom:14px;

}

.process-step p{

    color:var(--gris);

    line-height:1.7;

    font-size:15px;

}



/* =========================
   CTA
========================= */

.cta{

    margin:0 70px 90px;

    border-radius:40px;

    overflow:hidden;

    padding:74px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    color:white;

    background:linear-gradient(
        135deg,
        var(--azul),
        var(--celeste),
        var(--morado)
    );

}

.cta-left{

    max-width:760px;

}

.cta-left h2{

    font-size:56px;
    line-height:1.1;

    margin-bottom:20px;

}

.cta-left p{

    font-size:18px;
    line-height:1.8;

    color:rgba(255,255,255,.84);

}



/* =========================
   FOOTER
========================= */

.footer{

    background:#061a36;

    padding:90px 70px;

    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;

    gap:46px;

}

.footer-column img{

    width:220px;

    margin-bottom:28px;

}

.footer-column h4{

    color:white;

    font-size:24px;

    margin-bottom:24px;

}

.footer-column p,
.footer-column a{

    color:rgba(255,255,255,.76);

    text-decoration:none;

    line-height:1.8;

    font-size:16px;

}

.footer-column a{

    display:block;

    margin-bottom:12px;

    transition:.3s;

}

.footer-column a:hover{
    color:var(--celeste-claro);
}



/* =========================
   WHATSAPP
========================= */

.whatsapp-button{

    position:fixed;

    right:28px;
    bottom:28px;

    z-index:999;

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    text-decoration:none;

    font-size:30px;

    background:linear-gradient(
        135deg,
        var(--celeste),
        var(--morado)
    );

    box-shadow:0 18px 45px rgba(0,185,242,.30);

}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .service-block{
        grid-template-columns:1fr;
    }

    .service-block-reverse .service-block-image,
    .service-block-reverse .service-block-content{
        order:initial;
    }

    .differentials-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:768px){

    .header{

        padding:24px;

    }

    .menu,
    .btn-header{
        display:none;
    }

    .logo img{
        width:170px;
    }

    .landing-hero{

        min-height:auto;

        padding:150px 24px 90px;

        background-position:center;

    }

    .landing-hero h1{

        font-size:48px;

    }

    .landing-hero p{

        font-size:16px;

    }

    .hero-features{

        flex-direction:column;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary,
    .btn-white{
        width:100%;
    }

    .service-accreditation,
    .landing-intro,
    .service-lines,
    .service-differentials,
    .process-section{

        padding-left:24px;
        padding-right:24px;

    }

    .accreditation-card{

        grid-template-columns:1fr;

        text-align:center;

        padding:30px;

    }

    .intro-content h2,
    .section-title h2{

        font-size:36px;

    }

    .service-block-content{

        padding:36px 28px;

    }

    .service-block-content h3{

        font-size:34px;

    }

    .service-block-image{

        min-height:280px;

    }

    .differentials-grid,
    .process-grid{

        grid-template-columns:1fr;

    }

    .cta{

        margin:0 24px 70px;

        padding:42px 28px;

        flex-direction:column;

        text-align:center;

    }

    .cta-left h2{

        font-size:38px;

    }

    .footer{

        grid-template-columns:1fr;

        padding:70px 24px;

    }

    .whatsapp-button{

        width:64px;
        height:64px;

        right:18px;
        bottom:18px;

    }

}

