/*=========================================================
                    GRUPO ASOCIADO
                Landing Page Premium
=========================================================*/

/*=============================
        VARIABLES
==============================*/

:root{

    --primary:#102D51;
    --secondary:#C6923A;
    --accent:#1F5A84;

    --dark:#0F172A;
    --gray:#6B7B8C;
    --muted:#7E8DA2;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --bg:#F4F7FB;
    --surface:#FFFFFF;

    --border:#E3E7EE;

    --shadow-sm:0 12px 35px rgba(16,45,81,.08);
    --shadow:0 22px 50px rgba(16,45,81,.12);
    --shadow-lg:0 28px 80px rgba(16,45,81,.15);

    --radius:24px;

    --transition:.35s ease;

}

/*=============================
            RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:linear-gradient(180deg, #F8FBFF 0%, #F1F5FA 100%);

    overflow-x:hidden;

    line-height:1.75;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;
    padding:0;

}

.section{

    padding:110px 0;

}

.container{

    max-width:1200px;

}

/*=============================
        TIPOGRAFÍA
==============================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Poppins',sans-serif;

    font-weight:700;

    color:var(--primary);

}

.section-title{

    font-size:46px;

    margin-top:12px;

    margin-bottom:28px;

    line-height:1.16;

}

.section-text{

    color:var(--muted);

    font-size:17px;

}

.section-description{

    max-width:760px;

    margin:auto;

    color:var(--muted);

    line-height:1.8;

}

.section-badge{

    display:inline-block;

    background:rgba(200,161,77,.15);

    color:var(--secondary);

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.section-header{

    margin-bottom:70px;

}

/*=============================
            BOTONES
==============================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 30px rgba(11,37,69,.08);

}

.btn-warning{

    background:linear-gradient(135deg, var(--secondary), #DEB349);

    border:none;

    color:var(--white);

    position:relative;

    overflow:hidden;

}

.btn-warning::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.18);

    transform:skewX(-25deg);

}

.btn-warning:hover::after{

    animation:shine .8s ease forwards;

}

.btn-warning:hover{

    background:#d29f3c;

    transform:translateY(-2px);

    box-shadow:0 20px 35px rgba(11,37,69,.18);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.9);

    color:var(--white);

}

.btn-outline-light:hover{

    background:white;

    color:var(--primary);

    border-color:white;

}

/*=============================
            NAVBAR
==============================*/

.navbar-custom{

    padding:20px 0;

    transition:.4s ease;

    background:transparent;

    position:relative;

    z-index:30;

}

.navbar-scroll{

    background:rgba(255,255,255,.96);

    padding:12px 0;

    box-shadow:0 18px 40px rgba(16,45,81,.12);

    backdrop-filter:blur(14px);

}

.navbar-brand{

    font-size:28px;

    color:white;

    font-family:'Poppins',sans-serif;

}

.navbar-toggler{

    border-color:rgba(255,255,255,.45);

}

.navbar-toggler-icon{

    filter:invert(1);

}

.navbar-brand:hover{

    color:var(--secondary);

}

.nav-link{

    color:white;

    margin-left:18px;

    font-weight:500;

    position:relative;

    transition:color .3s ease;

}

.nav-link:hover,
.nav-link.active{

    color:var(--secondary);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.navbar-scroll .navbar-brand,
.navbar-scroll .nav-link{

    color:var(--primary);

}

.navbar-scroll .navbar-toggler{

    border-color:rgba(16,45,81,.18);

}

.navbar-scroll .navbar-toggler-icon{

    filter:none;

}

/*=============================
            HERO
==============================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg, rgba(16,45,81,.94), rgba(31,78,121,.94));

    overflow:hidden;

    padding:80px 0 90px;

}

.hero::before{

    content:"";

    position:absolute;

    width:540px;

    height:540px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:10%;

    right:-180px;

    z-index:1;

}

.hero::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-100px;

    left:-100px;

    z-index:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(16,45,81,.22);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.12);

    color:white;

    border-radius:999px;

    margin-bottom:30px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:13px;

}

.hero-title{

    font-size:62px;

    color:white;

    line-height:1.05;

    margin-bottom:28px;

    max-width:680px;

}

.hero-text{

    color:rgba(255,255,255,.9);

    font-size:19px;

    margin-bottom:36px;

    max-width:560px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-image{

    max-width:520px;

    margin:auto;

    border-radius:32px;

    box-shadow:0 40px 110px rgba(0,0,0,.26);

    transition:var(--transition);

    animation:float 6s ease-in-out infinite;

}

.hero-image:hover{

    transform:translateY(-10px);

}

/*=============================
        FEATURES
==============================*/

.features{

    background:var(--bg);

    margin-top:-80px;

    position:relative;

    z-index:20;

    padding:70px 0 40px;

    border-radius:34px 34px 0 0;

    box-shadow:0 -10px 50px rgba(16,45,81,.08);

}

.feature-box{

    background:var(--surface);

    text-align:center;

    padding:40px 30px;

    border-radius:28px;

    border:1px solid rgba(16,45,81,.08);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

    min-height:240px;

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

    border-color:rgba(198,146,58,.23);

}

.feature-box i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:15px;

}

.feature-box h5{

    margin-top:15px;

    font-size:18px;

}
/*=========================================================
                        NOSOTROS
=========================================================*/

.about{

    background:var(--white);

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:24px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.about-image:hover img{

    transform:scale(1.03);

}

.about-item{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

    color:var(--primary);

    margin-bottom:18px;

}

.about-item i{

    width:42px;

    height:42px;

    background:rgba(198,146,58,.12);

    color:var(--secondary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

/*=========================================================
                        SERVICIOS
=========================================================*/

.services{

    background:#F6F8FB;

}

.service-card{

    background:var(--surface);

    border-radius:28px;

    padding:40px 35px;

    height:100%;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    border:1px solid rgba(16,45,81,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(200,161,77,.30);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    background:linear-gradient(135deg,var(--primary),var(--accent));

    color:white;

    margin-bottom:30px;

    transition:.5s;

}

.service-card:hover .service-icon{

    transform:rotateY(180deg);

    background:linear-gradient(135deg,var(--secondary),#E8C56A);

}

.service-card h4{

    margin-bottom:20px;

    font-size:24px;

    color:var(--primary);

}

.service-card p{

    color:var(--gray);

    font-size:16px;

    margin-bottom:25px;

}

.service-card a{

    color:var(--secondary);

    font-weight:600;

    transition:var(--transition);

}

.service-card a:hover{

    color:var(--primary);

}

/*=========================================================
                    SECTION HEADER
=========================================================*/

.section-header{

    margin-bottom:70px;

}

.section-header h2{

    font-size:44px;

}

.section-header p{

    max-width:700px;

    margin:auto;

}

/*=========================================================
                    HOVER GENERAL
=========================================================*/

img{

    transition:var(--transition);

}

img:hover{

    transform:translateY(-3px);

}

/*=========================================================
                    EFECTOS DE LUZ
=========================================================*/

.service-card::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.15);

    border-radius:50%;

    top:-180px;

    right:-180px;

    transition:.6s;

}

.service-card:hover::after{

    top:-120px;

    right:-120px;

}

/*=========================================================
                    BOTÓN FLOTANTE
=========================================================*/

.btn-warning{

    position:relative;

    overflow:hidden;

}

.btn-warning::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-30deg);

}

.btn-warning:hover::before{

    animation:shine .8s;

}

/*=========================================================
                    ANIMACIONES
=========================================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes shine{

    100%{

        left:150%;

    }

}
/*=========================================================
                    ¿POR QUÉ ELEGIRNOS?
=========================================================*/

.why-us{

    background:var(--white);

}

.why-image img{

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.why-item{

    display:flex;

    gap:20px;

    margin-top:30px;

    padding:20px;

    border-radius:18px;

    transition:var(--transition);

}

.why-item:hover{

    background:#F8FAFC;

    transform:translateX(8px);

}

.why-icon{

    width:70px;

    height:70px;

    min-width:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,var(--primary),var(--accent));

    color:white;

    font-size:30px;

}

.why-item h5{

    margin-bottom:8px;

    color:var(--primary);

}

.why-item p{

    margin:0;

    color:var(--gray);

}


/*=========================================================
                    CONTADORES
=========================================================*/

.counter-section{

    background:linear-gradient(135deg,var(--primary),#14365E);

    color:white;

    padding:90px 0;

}

.counter-box{

    text-align:center;

    padding:20px;

}

.counter-box h2{

    font-size:60px;

    color:var(--secondary);

    font-weight:700;

    margin-bottom:10px;

}

.counter-box p{

    color:white;

    font-size:18px;

    margin:0;

}


/*=========================================================
                    TESTIMONIOS
=========================================================*/

.testimonials{

    background:#F6F8FB;

}

.testimonial-card{

    background:var(--surface);

    padding:38px;

    border-radius:26px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

    position:relative;

    border:1px solid rgba(16,45,81,.08);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.testimonial-card p{

    color:var(--muted);

    margin-bottom:25px;

    line-height:1.9;

}

.testimonial-card h5{

    margin-bottom:8px;

    color:var(--primary);

}

.testimonial-card span{

    display:block;

    color:var(--gray);

    font-size:15px;

    margin-top:6px;

}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:20px;

    right:25px;

    font-size:70px;

    color:rgba(200,161,77,.15);

    font-family:Georgia, serif;

}

.stars{

    color:#F4B400;

    font-size:20px;

    margin-bottom:20px;

}


/*=========================================================
                    CALL TO ACTION
=========================================================*/

.cta-section{

    padding:120px 0;

    background:linear-gradient(135deg, var(--primary), #1A3F68);

}

.cta-box{

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:30px;

    padding:80px 50px;

    color:white;

    box-shadow:var(--shadow-lg);

}

.cta-box h2{

    color:white;

    font-size:48px;

    line-height:1.05;

    letter-spacing:.2px;

    margin-bottom:22px;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    color:rgba(255,255,255,.85);

    font-size:18px;

}

.cta-box .btn{

    padding:16px 40px;

    font-size:18px;

}


/*=========================================================
                EFECTO GLASSMORPHISM
=========================================================*/

.glass{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

}


/*=========================================================
                EFECTO HOVER ICONOS
=========================================================*/

.why-icon,
.service-icon{

    transition:.5s;

}

.why-item:hover .why-icon{

    transform:rotate(-8deg) scale(1.1);

}

.service-card:hover .service-icon{

    transform:rotateY(180deg) scale(1.05);

}


/*=========================================================
                EFECTOS DE ENTRADA
=========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(30px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/*=========================================================
                        FAQ
=========================================================*/

.faq{

    background:var(--white);

}

.accordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.accordion-button{

    background:white;

    color:var(--primary);

    font-weight:600;

    font-size:18px;

    padding:22px 25px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:white;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    color:var(--gray);

    line-height:1.8;

}


/*=========================================================
                    CONTACTO
=========================================================*/

.contact{

    background:#F8FAFC;

}

.contact-info{

    margin-top:40px;

}

.contact-info p{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:22px;

    font-size:17px;

    color:var(--gray);

}

.contact-info i{

    width:55px;

    height:55px;

    background:var(--secondary);

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.contact form{

    background:white;

    padding:45px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.contact .form-control{

    height:58px;

    border-radius:14px;

    border:1px solid #ddd;

    padding:15px 20px;

    transition:var(--transition);

}

.contact textarea.form-control{

    height:180px;

    resize:none;

}

.contact .form-control:focus{

    border-color:var(--secondary);

    box-shadow:none;

}


/*=========================================================
                        FOOTER
=========================================================*/

.footer{

    background:var(--primary);

    color:white;

    padding:100px 0 30px;

}

.footer h3{

    color:white;

    margin-bottom:22px;

}

.footer ul li a{

    color:rgba(255,255,255,.8);

}

.footer p,
.footer ul li,
.footer .text-center{

    color:rgba(255,255,255,.75);

}

.footer h5{

    color:white;

    margin-bottom:25px;

}

.footer p{

    color:rgba(255,255,255,.75);

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:rgba(255,255,255,.78);

    transition:var(--transition);

}

.footer ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer hr{

    margin:50px 0 30px;

    border-color:rgba(255,255,255,.10);

}


/*=========================================================
                    REDES SOCIALES
=========================================================*/

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:20px;

    transition:var(--transition);

}

.social-icons a:hover{

    background:var(--secondary);

    transform:translateY(-6px);

}


/*=========================================================
                BOTÓN WHATSAPP
=========================================================*/

.whatsapp{

    position:fixed;

    right:28px;

    bottom:28px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:linear-gradient(135deg, #25D366, #1EBE4B);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 20px 45px rgba(0,0,0,.22);

    z-index:999;

    transition:var(--transition);

    animation:pulseSoft 2.8s ease-in-out infinite;

}

.whatsapp:hover{

    color:white;

    transform:scale(1.15);

}


/*=========================================================
                    SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b58d2c;

}


/*=========================================================
                    UTILIDADES
=========================================================*/

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.bg-secondary{

    background:var(--secondary)!important;

}


/*=========================================================
                    ANIMACIONES
=========================================================*/

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

.whatsapp{

    animation:pulse 2.5s infinite;

}

@keyframes fadeInUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.animate-up{

    animation:fadeInUp .8s ease;

}