:root{
    --primary:#1F3B6D;
    --secondary:#36A3DB;
    --accent:#ED1727;

    --white:#ffffff;
    --light:#f6f8fc;
    --gray:#6b7280;
    --dark:#202020;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s ease;
}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#36A3DB;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ED1727;

}

/* ==========================
   RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f6f8fc;
overflow-x:hidden;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
background:#1F3B6D;
color:white;
height:40px;
display:flex;
justify-content:space-around;
align-items:center;
font-size:13px;
padding:0 20px;
}

/*==================================================
HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(14px);

    box-shadow:0 6px 25px rgba(0,0,0,.05);

    z-index:999;

    transition:.35s;

    border-bottom:1px solid rgba(31,59,109,.08);

}

/*==================================================
NAVBAR
==================================================*/

nav{

    width:min(1320px,92%);

    margin:auto;

    height:95px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo a{

    display:flex;

    align-items:center;

}

.logo img{

    height:72px;

    width:auto;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05);

}


/*==================================================
MENU
==================================================*/

nav ul{
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;   /* <-- Quita los puntos */
    margin: 0;
    padding: 0;
}
nav ul li{

    position:relative;

}

nav ul li a{

    color:var(--primary);

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.35s;

    text-decoration: none;
}


/*==================================================
LINEA INFERIOR
==================================================*/

nav ul li a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--accent);

    transition:.35s;

    transform:translateX(-50%);

}

nav ul li a:hover{

    color:var(--accent);

}

nav ul li a:hover::after{

    width:100%;

}

nav ul li a.active{

    color:var(--accent);

}

nav ul li a.active::after{

    width:100%;

}

/*==================================================
BOTON NAV
==================================================*/

.btn-nav{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:16px 32px;

    background:var(--accent);

    color:var(--white);

    border-radius:14px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(237,23,39,.20);

    transition:.35s;

}

.btn-nav:hover{

    background:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 20px 35px rgba(31,59,109,.20);

}

/*==================================================
MENU HOVER
==================================================*/

nav ul li{

    padding:10px 0;

}

/*==================================================
EFECTO HEADER
==================================================*/

header:hover{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/*==================================================
BOTON MOVIL
==================================================*/

.menu-toggle{

    display:none;

    width:52px;

    height:52px;

    border:none;

    outline:none;

    cursor:pointer;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.menu-toggle:hover{

    background:var(--accent);

}

/*==================================================
BOTONES DEL NAV
==================================================*/

nav .right-side{

    display:flex;

    align-items:center;

    gap:25px;

}

/*==================================================
SEPARADOR OPCIONAL
==================================================*/

.nav-divider{

    width:1px;

    height:30px;

    background:rgba(0,0,0,.08);

}

/*==================================================
ANIMACION LINKS
==================================================*/

nav ul li{

    animation:fadeUp .6s ease both;

}

nav ul li:nth-child(1){animation-delay:.05s;}
nav ul li:nth-child(2){animation-delay:.10s;}
nav ul li:nth-child(3){animation-delay:.15s;}
nav ul li:nth-child(4){animation-delay:.20s;}
nav ul li:nth-child(5){animation-delay:.25s;}

/*==================================================
ESTADO STICKY
==================================================*/

header.scrolled{

    height:auto;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

header.scrolled nav{

    height:82px;

}

header.scrolled .logo img{

    height:64px;

}
/*==================================================
RESPONSIVE 1200px
==================================================*/

@media (max-width:1200px){

    nav{
        width:95%;
    }

    nav ul{
        gap:28px;
    }

    .btn-nav{
        padding:14px 24px;
        font-size:15px;
    }

}

/*==================================================
RESPONSIVE 992px
==================================================*/

@media (max-width:992px){

    .topbar{
        display:none;
    }

    nav{
        width:92%;
        height:85px;
        position:relative;
    }

    .logo img{
        height:62px;
    }

    .btn-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .nav-links{

        position:absolute;
        top:85px;
        left:0;

        width:100%;

        background:#fff;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:28px;

        padding:35px 0;

        border-radius:0 0 20px 20px;

        box-shadow:0 15px 35px rgba(0,0,0,.08);

        transform:translateY(-20px);
        opacity:0;
        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        opacity:1;
        visibility:visible;
        transform:translateY(0);

    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:8px 0;
        font-size:18px;
    }

}

/*=========================================
CONTACT HERO
=========================================*/

.contact-hero{

    position:relative;

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    text-align:center;

    background:
    linear-gradient(rgba(20,45,85,.78),
    rgba(20,45,85,.78)),
    url("../../src/img/contacto-banner.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.contact-hero .overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top,
    rgba(54,163,219,.18),
    transparent 60%);

}

.contact-hero .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;

    color:#fff;

}

.contact-hero-content .badge{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:35px;

}
.contact-hero-content h1{

    font-size:68px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:30px;

    color:#fff;

}

.contact-hero-content p{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

.contact-hero .hero-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-hero-content p{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

.contact-hero .hero-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*=========================================
BOTONES HERO
=========================================*/

.btn-yellow{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    background:#ef233c;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(239,35,60,.30);

}

.btn-yellow:hover{

    background:#d90429;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(239,35,60,.40);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);

}


.contact-hero .hero-buttons{

    margin-top:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

@media(max-width:992px){

.contact-hero{

    min-height:75vh;

}

.contact-hero-content h1{

    font-size:48px;

}

.contact-hero-content p{

    font-size:18px;

}

}

/*=========================================
CONTACT INFO
=========================================*/

.contact-info{

    padding:120px 0;

    background:var(--light);

}

.contact-info .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
HEADER
=========================================*/

.contact-info .section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.contact-info .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.contact-info .section-header h2{

    color:var(--primary);

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.contact-info .section-header p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/*=========================================
GRID
=========================================*/

.contact-info-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*=========================================
CARD
=========================================*/

.contact-box{

    background:var(--white);

    padding:45px 30px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border-top:5px solid transparent;

}

.contact-box:hover{

    transform:translateY(-10px);

    border-top-color:var(--accent);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/*=========================================
ICON
=========================================*/

.contact-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:var(--white);

    font-size:34px;

    box-shadow:0 20px 45px rgba(31,59,109,.25);

    transition:.35s;

}

.contact-box:hover .contact-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*=========================================
TEXT
=========================================*/

.contact-box h3{

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.contact-box p{

    color:var(--gray);

    font-size:16px;

    line-height:1.8;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.contact-info-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info{

    padding:80px 0;

}

.contact-info-grid{

    grid-template-columns:1fr;

}

.contact-info .section-header h2{

    font-size:34px;

}

.contact-info .section-header p{

    font-size:16px;

}

.contact-box{

    padding:35px 25px;

}

.contact-icon{

    width:75px;

    height:75px;

    font-size:28px;

}

.contact-box h3{

    font-size:22px;

}

}

/*=========================================
FORMULARIO DE CONTACTO
=========================================*/

.contact-form-section{

    padding:120px 0;

    background:var(--white);

}

.contact-form-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
GRID
=========================================*/

.contact-form-grid{

    display:grid;

    grid-template-columns:45% 55%;

    gap:60px;

    align-items:center;

}

/*=========================================
LADO IZQUIERDO
=========================================*/

.contact-left{

    padding-right:20px;

}

.contact-left .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.contact-left h2{

    color:var(--primary);

    font-size:48px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

}

.contact-left p{

    color:var(--gray);

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

}

/*=========================================
BENEFICIOS
=========================================*/

.contact-benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

}

.contact-benefits div{

    display:flex;

    align-items:center;

    gap:15px;

    background:var(--light);

    padding:18px 22px;

    border-radius:18px;

    transition:.35s;

}

.contact-benefits div:hover{

    transform:translateX(10px);

    box-shadow:var(--shadow);

}

.contact-benefits i{

    color:var(--secondary);

    font-size:20px;

}

/*=========================================
TELÉFONO
=========================================*/

.contact-phone{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:18px 30px;

    background:var(--primary);

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.contact-phone:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

/*=========================================
FORMULARIO
=========================================*/

.contact-right{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.input-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.input-group label{

    color:var(--primary);

    font-weight:600;

    margin-bottom:10px;

}

.input-group input,

.input-group select,

.input-group textarea{

    width:100%;

    padding:18px;

    border:1px solid #d8dee9;

    border-radius:14px;

    outline:none;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    transition:.35s;

    resize:none;

}

.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(54,163,219,.15);

}

.contact-right .btn-yellow{

    width:100%;

    justify-content:center;

    margin-top:10px;

    cursor:pointer;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.contact-form-grid{

    grid-template-columns:1fr;

}

.contact-left{

    text-align:center;

    padding-right:0;

}

.contact-phone{

    justify-content:center;

}

}

@media(max-width:768px){

.contact-form-section{

    padding:80px 0;

}

.contact-left h2{

    font-size:34px;

}

.input-grid{

    grid-template-columns:1fr;

}

.contact-right{

    padding:30px;

}

}

/*=========================================
MAPA
=========================================*/

.map-section{

    padding:120px 0;

    background:var(--light);

}

.map-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
HEADER
=========================================*/

.map-section .section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.map-section .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.map-section h2{

    color:var(--primary);

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.map-section p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/*=========================================
MAPA
=========================================*/

.map-wrapper{

    position:relative;

    margin-top:60px;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.map-wrapper iframe{

    width:100%;

    height:600px;

    border:0;

    display:block;

}

/*=========================================
TARJETA
=========================================*/

.map-card{

    position:absolute;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    width:360px;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(15px);

    padding:35px;

    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

    border-top:5px solid var(--accent);

}

.map-card h3{

    color:var(--primary);

    font-size:28px;

    margin-bottom:25px;

}

.map-card p{

    display:flex;

    align-items:flex-start;

    gap:15px;

    color:var(--gray);

    font-size:16px;

    line-height:1.8;

    margin-bottom:20px;

}

.map-card i{

    color:var(--secondary);

    font-size:20px;

    margin-top:4px;

    min-width:22px;

}

.map-card .btn-yellow{

    width:100%;

    justify-content:center;

    margin-top:20px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.map-card{

    position:relative;

    right:auto;

    top:auto;

    transform:none;

    width:100%;

    border-radius:0 0 25px 25px;

}

.map-wrapper iframe{

    height:450px;

}

}

@media(max-width:768px){

.map-section{

    padding:80px 0;

}

.map-section h2{

    font-size:36px;

}

.map-section p{

    font-size:16px;

}

.map-wrapper iframe{

    height:350px;

}

.map-card{

    padding:25px;

}

.map-card h3{

    font-size:24px;

}

}

/*=========================================
SOCIAL
=========================================*/

.social-section{

    padding:120px 0;

    background:var(--white);

}

.social-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
HEADER
=========================================*/

.social-section .section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.social-section .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.social-section h2{

    color:var(--primary);

    font-size:48px;

    font-weight:800;

    margin-bottom:25px;

}

.social-section p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/*=========================================
GRID
=========================================*/

.social-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*=========================================
CARD
=========================================*/

.social-card{

    background:var(--light);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    text-decoration:none;

    box-shadow:var(--shadow);

    transition:.35s;

    border-top:5px solid transparent;

}

.social-card:hover{

    transform:translateY(-10px);

    border-top-color:var(--accent);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/*=========================================
ICONO
=========================================*/

.social-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-size:38px;

    transition:.35s;

}

.social-card:hover .social-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*=========================================
TEXT
=========================================*/

.social-card h3{

    color:var(--primary);

    font-size:24px;

    margin-bottom:15px;

}

.social-card p{

    color:var(--gray);

    font-size:16px;

    line-height:1.8;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.social-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.social-section{

padding:80px 0;

}

.social-grid{

grid-template-columns:1fr;

}

.social-section h2{

font-size:36px;

}

.social-section p{

font-size:16px;

}

}

/*=========================================
FAQ
=========================================*/

.faq{

    padding:80px 0;

}

.faq::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(54,163,219,.05);

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.faq::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(237,23,39,.05);

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

/*=========================================
CONTENEDOR
=========================================*/
.faq-container{

    max-width:900px;

    margin:40px auto 0;

}
/*=========================================
ITEM
=========================================*/

.faq-item{

    background:#fff;

    margin-bottom:22px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*=========================================
BOTON
=========================================*/

.faq-question{

    width:100%;

    background:#fff;

    border:none;

    cursor:pointer;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.35s;

}

/*=========================================
PREGUNTA
=========================================*/

.faq-question span{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:18px;

    font-weight:600;

    color:#1F3B6D;

    text-align:left;

    line-height:1.5;

}

/*=========================================
ICONO IZQUIERDO
=========================================*/

.faq-question span i{

    width:52px;

    height:52px;

    min-width:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(

        135deg,

        #36A3DB,

        #1F3B6D

    );

    color:#fff;

    font-size:20px;

}

/*=========================================
ICONO +
=========================================*/

.faq-toggle{

    width:44px;

    height:44px;

    min-width:44px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef6ff;

    color:#1F3B6D;

    font-size:16px;

    transition:.35s;

}

/*=========================================
RESPUESTA
=========================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 30px 100px;

    color:#5f6675;

    line-height:1.9;

    font-size:16px;

}

/*=========================================
ACTIVO
=========================================*/

.faq-item.active{

    border-color:#36A3DB;

}

.faq-item.active .faq-question{

    background:#f8fbff;

}

.faq-item.active .faq-toggle{

    background:#1F3B6D;

    color:#fff;

    transform:rotate(180deg);

}

.faq-item.active .faq-question span i{

    background:linear-gradient(

        135deg,

        #ED1727,

        #1F3B6D

    );

}

/*=========================================
RESPONSIVE 992px
=========================================*/

@media(max-width:992px){

.faq{

padding:90px 0;

}

.faq-container{

max-width:100%;

margin-top:60px;

}

.faq-question{

padding:22px 24px;

}

.faq-question span{

font-size:17px;

}

.faq-question span i{

width:48px;

height:48px;

min-width:48px;

font-size:18px;

}

.faq-toggle{

width:42px;

height:42px;

min-width:42px;

}

.faq-answer p{

padding:0 24px 24px 90px;

font-size:15px;

}

}

/*=========================================
RESPONSIVE 768px
=========================================*/

@media(max-width:768px){

.faq{

padding:80px 0;

}

.faq-container{

margin-top:50px;

}

.faq-item{

margin-bottom:18px;

border-radius:16px;

}

.faq-question{

padding:20px;

align-items:flex-start;

}

.faq-question span{

font-size:16px;

gap:14px;

line-height:1.6;

}

.faq-question span i{

width:44px;

height:44px;

min-width:44px;

font-size:17px;

}

.faq-toggle{

width:40px;

height:40px;

min-width:40px;

font-size:15px;

}

.faq-answer p{

padding:0 20px 22px 78px;

font-size:15px;

line-height:1.8;

}

}

/*=========================================
RESPONSIVE 576px
=========================================*/

@media(max-width:576px){

.faq{

padding:70px 0;

}

.faq-question{

padding:18px 16px;

}

.faq-question span{

font-size:15px;

gap:12px;

align-items:flex-start;

}

.faq-question span i{

width:40px;

height:40px;

min-width:40px;

font-size:15px;

}

.faq-toggle{

width:36px;

height:36px;

min-width:36px;

font-size:14px;

}

.faq-answer p{

padding:0 16px 20px 68px;

font-size:14px;

line-height:1.8;

}

}

/*=========================================
RESPONSIVE 420px
=========================================*/

@media(max-width:420px){

.faq-question{

padding:16px 14px;

}

.faq-question span{

display:grid;

grid-template-columns:40px 1fr;

column-gap:10px;

font-size:14px;

}

.faq-question span i{

margin-top:2px;

}

.faq-toggle{

width:34px;

height:34px;

min-width:34px;

font-size:13px;

}

.faq-answer p{

padding:0 14px 18px 14px;

font-size:14px;

}

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:#EAF5FD;

    color:#36A3DB;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-title h2{

    font-size:clamp(2.6rem,4vw,3.4rem);

    color:#1F3B6D;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:#6B7280;

    line-height:1.9;

}




/*=========================================
ACTIVO
=========================================*/

.faq-item.active .faq-question{

    background:linear-gradient(135deg,#1F3B6D,#36A3DB);

}

.faq-item.active .faq-question div{

    color:#fff;

}

.faq-item.active .faq-question div i{

    background:#fff;

    color:#ED1727;

}

.faq-item.active .faq-answer{

    max-height:400px;

    padding:0 30px;

}

.faq-item.active .faq-icon{

    background:#fff;

}

.faq-item.active .faq-icon i{

    color:#ED1727;

    transform:rotate(180deg);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.faq{

padding:80px 0;

}

.faq-container{

margin-top:50px;

}

.faq-question{

padding:22px;

align-items:flex-start;

}

.faq-question div{

font-size:16px;

gap:15px;

}

.faq-question div i{

width:42px;

height:42px;

font-size:16px;

}

.faq-answer{

padding:0 22px;

}

.faq-item.active .faq-answer{

padding:0 22px;

}

.faq-answer p{

font-size:15px;

line-height:1.8;

padding-bottom:24px;

}

}

@media(max-width:480px){

.faq-question{

padding:18px;

}

.faq-question div{

font-size:15px;

}

.faq-question div i{

width:38px;

height:38px;

font-size:15px;

}

.faq-icon{

width:36px;

height:36px;

}

.faq-answer{

padding:0 18px;

}

.faq-item.active .faq-answer{

padding:0 18px;

}

}

/*=========================================
CTA FINAL
=========================================*/

.contact-cta{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        var(--primary),
        #18325b
    );

}

.contact-cta .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.cta-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    color:var(--white);

}

.contact-cta .section-subtitle{

    display:inline-block;

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    opacity:.9;

}

.cta-box h2{

    font-size:54px;

    line-height:1.2;

    margin-bottom:30px;

    font-weight:800;

}

.cta-box p{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

.cta-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn-yellow{

    min-width:250px;

}

.cta-buttons .btn-outline{

    min-width:250px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

    background:transparent;

}

.cta-buttons .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

@media(max-width:768px){

.contact-cta{

padding:80px 0;

}

.cta-box h2{

font-size:36px;

}

.cta-box p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}

/*=========================================
FOOTER LOGO
=========================================*/

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-logo img{

    width:110px;

    height:auto;

}

.footer-logo h3{

    color:#fff;

    font-size:34px;

    font-weight:700;

    margin:0;

    letter-spacing:1px;

}
/*=========================================
FOOTER
=========================================*/

.footer{

    position:relative;

    background:linear-gradient(135deg,#C8102E 0%,#ED1727 45%,#B40F24 100%);

    color:#fff;

    padding:90px 0 25px;

    overflow:hidden;

}

/*=========================================
MARCA DE AGUA
=========================================*/

.footer-bg-text{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    font-size:220px;

    font-weight:900;

    letter-spacing:15px;

    color:#ffffff;

    opacity:.03;

    white-space:nowrap;

    pointer-events:none;

    user-select:none;

}

/*=========================================
GRID
=========================================*/

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

}

/*=========================================
LOGO
=========================================*/

.footer-about img{

    width:230px;

    margin-bottom:30px;

}

.footer-about p{

    color:rgba(255,255,255,.88);

    line-height:1.9;

    margin-bottom:35px;

    font-size:16px;

}

/*=========================================
BOTON
=========================================*/

.footer-btn{

    display:inline-block;

    padding:18px 38px;

    background:#fff;

    color:#ED1727;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.footer-btn:hover{

    background:#1F3B6D;

    color:#fff;

    transform:translateY(-6px);

}

/*=========================================
TITULOS
=========================================*/

.footer-links h3,
.footer-contact h3{

    margin-bottom:28px;

    font-size:23px;

    position:relative;

}

.footer-links h3::after,
.footer-contact h3::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    margin-top:10px;

    background:#36A3DB;

    border-radius:20px;

}

/*=========================================
LINKS
=========================================*/

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:rgba(255,255,255,.88);

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.footer-links a::before{

    content:"➜";

    opacity:0;

    transform:translateX(-10px);

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-links a:hover::before{

    opacity:1;

    transform:translateX(0);

}

/*=========================================
CONTACTO
=========================================*/

.footer-contact div{

    display:flex;

    gap:18px;

    margin-bottom:22px;

    align-items:flex-start;

}

.footer-contact i{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.footer-contact div:hover i{

    background:#36A3DB;

    transform:rotate(8deg) scale(1.08);

}

.footer-contact span{

    color:rgba(255,255,255,.88);

    line-height:1.8;

}

/*=========================================
REDES
=========================================*/

.footer-social{

    display:flex !important;

    gap:16px;

    margin-top:35px;

}

.footer-social a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:#36A3DB;

    transform:translateY(-8px);

}

/*=========================================
BOTTOM
=========================================*/

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.80);

}

.footer-bottom span{

    color:#fff;

    font-weight:600;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 0 30px;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.footer-about{

display:flex;

flex-direction:column;

align-items:center;

}

.footer-contact div{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

.footer-bg-text{

font-size:120px;

}

}