/* ======================================================
   DESTINO AEROPUERTO - LANDING PAGE
====================================================== */

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#1976FF;
    --primary-dark:#0B4FCC;
    --secondary:#0B1F3A;
    --secondary-light:#12345B;

    --text:#1E293B;
    --text-light:#64748B;

    --white:#FFFFFF;
    --light:#F8FAFC;

    --border:#E5E7EB;

    --radius:18px;

    --shadow:0 12px 30px rgba(0,0,0,.12);

    --transition:.30s ease;

}

/* ==========================
   RESET
========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Montserrat',sans-serif;
    background:#FFF;
    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}



/* ======================================================
   HEADER
====================================================== */

.landing-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

    background:transparent;

}

.landing-header.scrolled{

    background:#081428;

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}

/* ========================= */

.header-wrapper{

    position:relative;

    height:96px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    transition:var(--transition);

}

/* ========================= */

.landing-header.scrolled .header-wrapper{

    height:78px;

}

/* ==========================
   LOGO
========================== */

.landing-logo{

    padding:8px 14px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:var(--transition);

   

}

.landing-logo:hover{

    transform:translateY(-2px);

}

.landing-logo img{

    height:62px;

    width:auto;

}

.borderRad {
     border-radius:16px;
}

/* ==========================
   MENU
========================== */

.landing-nav{

    display:flex;

    align-items:center;

    gap:42px;

}

.landing-nav a{

    position:relative;

    color:#FFF;

    font-weight:600;

    font-size:.95rem;

    letter-spacing:.4px;

    transition:var(--transition);

    white-space: nowrap;

}

.landing-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--primary);

    transition:.25s;

}

.landing-nav a:hover::after,

.landing-nav a.active::after{

    width:100%;

}

.landing-nav a:hover{

    color:#FFF;

}

/* ==========================
   ACCIONES
========================== */

.landing-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

.social-link{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FFF;

    font-size:1.2rem;

    transition:var(--transition);

}

.social-link:hover{

    background:rgba(255,255,255,.12);

    color:#FFF;

}

/* ========================= */

.btn-reservar{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:12px;

    background:var(--primary);

    color:#FFF;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 8px 20px rgba(25,118,255,.28);

    white-space: nowrap;

    flex-shrink: 0;

}

.btn-reservar:hover{

    background:var(--primary-dark);

    color:#FFF;

    transform:translateY(-2px);

}


/* ==========================
   MOBILE BUTTON
========================== */

.mobile-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.12);

    color:#FFF;

    font-size:1.5rem;

    cursor:pointer;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:992px){

    .header-wrapper{

        height:82px;

    }

    .landing-logo img{

        height:52px;

    }

    .landing-nav{

    position:absolute;

    top:100%;

    right:0;

    width:260px;

    background:#081428;

    border-radius:16px;

    box-shadow:0 18px 45px rgba(0,0,0,.25);

    display:flex;

    flex-direction:column;

    align-items:stretch;

    padding:18px;

    gap:6px;

    opacity:0;

    visibility:hidden;

    transform:translateY(-10px);

    transition:all .30s ease;

    }

    .landing-nav.show{

        opacity:1;

        visibility:visible;

        transform:translateY(12px);

    }

    .landing-actions{

        display:flex;

        align-items:center;

        margin-left:auto;

        gap:8px;

    }

    .mobile-toggle{

        display:flex;
        align-items:center;
        justify-content:center;

        width:46px;
        height:46px;

        padding:0;

        line-height:1;

    }

    .mobile-toggle i{

    display:flex;

    align-items:center;
    justify-content:center;

    line-height:1;

    font-size:1.5rem;

}

    .landing-nav a{

    width:100%;

    padding:12px 14px;

    border-radius:10px;

    }

    .landing-nav a:hover{

        background:rgba(255,255,255,.08);

    }

    .landing-nav a::after{

        display:none;

    }

    .btn-reservar{

        display:none;

    }

}

@media(max-width:576px){

    .landing-logo{

        padding:6px 10px;

    }

    .landing-logo img{

        height:46px;

    }

    .social-link{

        width:48px;

        height:48px;

        font-size:1.8rem;

    }

    

}

/* ======================================================
   HERO
====================================================== */

.hero{

    position:relative;

    display:flex;

    align-items:center;

    height:92vh;

    min-height:650px;

    max-height:900px;

    padding-top:0px;

    overflow:hidden;

}

.hero-container{

    position:relative;

    z-index:10;

    width:100%;

}

.hero .row{

    min-height:calc(90svh - 96px);

    min-height:calc(90vh - 96px);

    align-items:center;

}


/* ========================= */

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center bottom;

    z-index:1;

    

    transform-origin:bottom center;

}

/* ========================= */

.hero-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:
        linear-gradient(
            90deg,
            rgba(8,20,40,.83) 0%,
            rgba(8,20,40,.78) 35%,
            rgba(8,20,40,.45) 65%,
            rgba(8,20,40,.10) 100%
        );

    z-index:2;

}





/* ======================================================
   TEXTO
====================================================== */

.hero-tag{

    display:inline-block;

    

    color:#3EA6FF;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.95rem;

   

    margin-bottom:14px;

}

/* ========================= */

.hero h1{

    color:#FFF;

    font-size:clamp(1.75rem,2.2vw,2.8rem);

    line-height:1.12;

    font-weight:800;

    margin-bottom:22px;

}

/* ========================= */

.hero h1 span{

    display:block;

    margin-top:8px;

    color:#3EA6FF;

}

/* ========================= */

.hero p{

    max-width:560px;

    color:rgba(255,255,255,.88);

    font-size:clamp(.90rem,.85vw,.98rem);

    line-height:1.55;

    margin-bottom:28px;

}



.hero-row{

    min-height:100%;

}

.hero-texto{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-right:80px;

    position:relative;

    z-index:20;

}



/* ======================================================
   BOTON
====================================================== */

.btn-principal{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:fit-content;

    align-self:flex-start;

    padding:14px 24px;

    background:#1976FF;

    color:#FFF;

    border-radius:10px;

    font-size:.95rem;

    font-weight:600;

    transition:.30s;

}

.btn-principal:hover{

    background:#1565E8;

    color:#FFF;

    transform:translateY(-2px);

}

/* ======================================================
   FLOTA HERO
====================================================== */

.hero-flota-img{

    position:absolute;

    right:4%;

    bottom:20px;

    width:clamp(520px,48vw,860px);

    z-index:5;

    pointer-events:none;

    user-select:none;

    filter:drop-shadow(0 18px 28px rgba(0,0,0,.28));

    animation:flotaEntrada .9s ease;

}



/* ========================= */

@keyframes flotaEntrada{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}




/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .hero h1{

        font-size:3.3rem;

    }

    

}

@media(max-width:992px){

    .hero{

        height:auto;

        min-height:100svh;

        padding-top:90px;

        padding-bottom:30px;

        text-align:center;

    }

    .hero-row{

    align-items:flex-start;

    justify-content:flex-start;

    }

    .hero-texto{

        padding-right:0;

        padding-top:15px;

        align-items:center;

    }

    .hero .row{

        min-height:auto;

    }

    .hero h1{

        font-size:2.8rem;

    }

    .hero p{

        margin:auto;

        margin-bottom:35px;

    }

    .hero-flota-img{

        width:78%;

        right:50%;

        transform:translateX(50%);

        bottom:0;

    }
    

   

}

@media(max-width:576px){

    .hero{

        min-height:100svh;

        padding-top:0px;

        padding-bottom:160px;

    }

    .hero-row{

        align-items:flex-start;

    }

    .hero-texto{


        padding-top:35px;

        padding-right:0;

        align-items:center;

    }

    .hero h1{

        font-size:2rem;

        margin-bottom:15px;

    }

    .hero p{

        font-size:.95rem;

        line-height:1.65;

        margin-bottom:22px;

    }

    .btn-principal{

        width:auto;

        padding:14px 24px;

        align-self:center;

    }

    .hero-flota{

        margin-top:20px;

    }

    .hero-flota-img{

        width:82%;

        right:50%;

        transform:translateX(50%);

        bottom:0;

    }

    
    

}

/* ======================================================
   SERVICIOS
====================================================== */

.servicios{

    position:relative;

    background:#F8FAFC;

    padding:0 0 100px;

}

/* ======================================================
   TRUST BAR
====================================================== */

.trust-bar{

    position:relative;

    margin-top:-75px;

    margin-bottom:80px;

    background:#FFF;

    border-radius:20px;

    padding:20px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

    z-index:50;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:15px;

}

.trust-item i{

    width:56px;

    height:56px;

    border-radius:14px;

    background:#E9F2FF;

    color:#1976FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.45rem;

    flex-shrink:0;

}

.trust-item strong{

    display:block;

    font-size:1rem;

    color:#0B1F3A;

    margin-bottom:3px;

}

.trust-item small{

    color:#6B7280;

    font-size:.85rem;

}

/* ======================================================
   TITULO
====================================================== */

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    color:#1976FF;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:16px;

}

.section-title h2{

    font-size:clamp(2rem,2.5vw,2.8rem);

    color:#0B1F3A;

    font-weight:800;

    margin-bottom:20px;

}

.section-title p{

    color:#64748B;

    line-height:1.8;

    font-size:1.05rem;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .trust-bar{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .servicios{

        padding-bottom:70px;

    }

    .trust-bar{

        display: none;


    }

    .trust-item{

        justify-content:flex-start;

    }

    .section-title{


        margin: 60px 0 50px;

    }

}



/* ======================================================
   GRID SERVICIOS
====================================================== */

.servicios-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/* ======================================================
   TARJETA
====================================================== */

.servicio-card{

    background:#FFF;

    border:1px solid #E8EEF5;

    border-radius:20px;

    padding:30px;

    transition:.30s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.servicio-card:hover{

    transform:translateY(-8px);

    border-color:#1976FF;

    box-shadow:0 20px 45px rgba(25,118,255,.12);

}

/* ======================================================
   CABECERA
====================================================== */

.servicio-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:22px;

}

.servicio-header h3{

    margin:0;

    flex:1;

    font-size:1.2rem;

    font-weight:700;

    color:#0B1F3A;

    line-height:1.35;

}

/* ======================================================
   ICONO
====================================================== */

.servicio-icono{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:16px;

    background:#EAF3FF;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#1976FF;

    font-size:1.6rem;

    transition:.30s;

}

.servicio-card:hover .servicio-icono{

    background:#1976FF;

    color:#FFF;

    transform:rotate(-6deg);

}

/* ======================================================
   TEXTO
====================================================== */

.servicio-card p{

    margin:0;

    color:#64748B;

    line-height:1.75;

    font-size:.95rem;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .servicios-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .servicios-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .servicio-card{

        padding:24px;

    }

}

/* ======================================================
   FLOTA
====================================================== */

.flota{

    background:#FFFFFF;

    padding:110px 0;

}

/* ======================================================
   GRID
====================================================== */

.flota-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

    margin-top:40px;

}

/* ======================================================
   TARJETA
====================================================== */

.vehiculo-card{

    position:relative;

    background:#FFF;

    border:1px solid #E8EEF5;

    border-radius:24px;

    padding:0 35px 35px;

    transition:.35s ease;

    overflow:visible;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.vehiculo-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

    border-color:#1976FF;

}

/* ======================================================
   IMAGEN
====================================================== */

.vehiculo-imagen{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    height:240px;

    margin-top:-55px;

    margin-bottom:20px;

}

.vehiculo-imagen img{

    max-width:95%;

    max-height:220px;

    transition:.35s ease;

    filter:drop-shadow(0 18px 25px rgba(0,0,0,.18));

}

.vehiculo-card:hover .vehiculo-imagen img{

    transform:translateY(-8px) scale(1.03);

}

/* ======================================================
   CUERPO
====================================================== */

.vehiculo-body{

    display:flex;

    flex-direction:column;

    height:100%;

}

.vehiculo-body h3{

    text-align:center;

    font-size:1.45rem;

    font-weight:700;

    color:#0B1F3A;

    margin-bottom:25px;

}

/* ======================================================
   LISTA
====================================================== */

.vehiculo-body ul{

    margin:0;

    padding:0;

    list-style:none;

}

.vehiculo-body li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    color:#64748B;

    font-size:.96rem;

}

.vehiculo-body li i{

    color:#1976FF;

    font-size:1rem;

}

/* ======================================================
   BOTON
====================================================== */

.btn-vehiculo{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:fit-content;
    width:-moz-fit-content;

    align-self:center;

    margin-top:25px;

    padding:13px 22px;

    border-radius:12px;

    background:#1976FF;

    color:#FFF;

    font-weight:600;

    font-size:.95rem;

    transition:.30s;

}

.btn-vehiculo:hover{

    background:#1565E8;

    color:#FFF;

    transform:translateY(-2px);

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:992px){

    .flota-grid{

        grid-template-columns:1fr;

        gap:70px;

    }

}

@media(max-width:576px){

    .flota{

        padding:80px 0;

    }

    .vehiculo-card{

        padding:0 22px 25px;

    }

    .vehiculo-imagen{

        height:190px;

        margin-top:-35px;

    }

    .vehiculo-imagen img{

        max-height:170px;

    }

    .vehiculo-body h3{

        font-size:1.25rem;

    }

}

/* ======================================================
   DESTINOS
====================================================== */

.destinos{

    background:#F8FAFC;

    padding:110px 0;

}

/* ======================================================
   GRID
====================================================== */

.destinos-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:45px;

}

/* ======================================================
   TARJETA
====================================================== */

.destino-card{

    background:#FFF;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #E8EEF5;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.destino-card:hover{

    transform:translateY(-8px);

    border-color:#1976FF;

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

/* ======================================================
   IMAGEN
====================================================== */

.destino-imagen{

    height:230px;

    overflow:hidden;

    position:relative;

}

.destino-imagen img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.destino-card:hover .destino-imagen img{

    transform:scale(1.08);

}

/* Overlay sobre la imagen */

.destino-imagen::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(8,20,40,.82) 0%,

        rgba(8,20,40,.20) 45%,

        rgba(8,20,40,0) 75%

    );

    transition:.35s;

}

.destino-card:hover .destino-imagen::after{

    background:linear-gradient(

        to top,

        rgba(8,20,40,.90) 0%,

        rgba(8,20,40,.28) 45%,

        rgba(8,20,40,0) 80%

    );

}

/* ==========================
   TITULO SOBRE LA IMAGEN
========================== */

.destino-titulo{

    position:absolute;

    left:22px;

    bottom:18px;

    display:flex;

    align-items:center;

    gap:10px;

    z-index:3;

}

.destino-titulo i{

    color:#FFF;

    font-size:1.2rem;

}

.destino-titulo h3{

    margin:0;

    color:#FFF;

    font-size:1.45rem;

    font-weight:700;

    text-shadow:0 3px 10px rgba(0,0,0,.35);

}

/* ======================================================
   CONTENIDO
====================================================== */

.destino-body{

    padding:25px;

}



.destino-body p{

    color:#64748B;

    line-height:1.7;

    font-size:.95rem;

    margin-bottom:22px;

    min-height:65px;

}

/* ======================================================
   BOTON
====================================================== */

.btn-destino{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:fit-content;
    width:-moz-fit-content;

    padding:12px 22px;

    background:#1976FF;

    color:#FFF;

    border-radius:12px;

    font-weight:600;

    font-size:.95rem;

    transition:.30s;

}

.btn-destino:hover{

    background:#1565E8;

    color:#FFF;

    transform:translateY(-2px);

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .destinos-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .destinos{

        padding:80px 0;

    }

    .destinos-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .destino-imagen{

        height:220px;

    }

}

/* ======================================================
   ELEGIRNOS
====================================================== */

.elegirnos{

    background:#FFFFFF;

    padding:90px 0;

}

/* ========================= */

.elegirnos-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-top:45px;

}

/* ========================= */

.elegir-item{

    background:#FFF;

    border:1px solid #E8EEF5;

    border-radius:18px;

    padding:24px;

    transition:.30s ease;

    box-shadow:0 8px 22px rgba(0,0,0,.05);

}

.elegir-item:hover{

    transform:translateY(-6px);

    border-color:#1976FF;

    box-shadow:0 18px 35px rgba(25,118,255,.10);

}

/* ========================= */

.elegir-header{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:14px;

}

.elegir-header i{

    color:#1976FF;

    font-size:1.55rem;

    min-width:28px;

}

/* ========================= */

.elegir-header h3{

    margin:0;

    color:#0B1F3A;

    font-size:1.08rem;

    font-weight:700;

}

/* ========================= */

.elegir-item p{

    margin:0;

    color:#64748B;

    line-height:1.6;

    font-size:.92rem;

}

/* ========================= */

@media(max-width:992px){

    .elegirnos-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .elegirnos{

        padding:70px 0;

    }

    .elegirnos-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .elegir-item{

        padding:20px;

    }

}

/* ==========================================
   MODAL COTIZACIÓN
========================================== */

#modalCotizacion .modal-dialog{

    max-width: 900px;

}

#modalCotizacion .modal-content{

    border: none;

    border-radius: 18px;

    overflow: hidden;

    max-height: 90vh;

}

#modalCotizacion .modal-header{

    padding: 1.5rem;

    border-bottom: 1px solid #E9ECEF;

    background: #FFF;

}

#modalCotizacion .modal-body{

    padding: 1.5rem;

    padding-bottom: 2rem;

    overflow-y: auto;

    max-height: calc(90vh - 155px);

}

#modalCotizacion .modal-footer{

    padding: 1.25rem 1.5rem 1.5rem;

    border-top: 1px solid #E9ECEF;
}

/* ==========================================
   FORMULARIO
========================================== */

#modalCotizacion .form-label{

    font-size: .9rem;

    font-weight: 600;

    color: #0B1F3A;

    margin-bottom: .35rem;

}

#modalCotizacion .form-control,
#modalCotizacion .form-select{

    border-radius: 10px;

    padding: .65rem .85rem;

}

#modalCotizacion textarea{

    resize: vertical;

    min-height: 90px;

}

#modalCotizacion .btn-primary{

    padding: .7rem 1.4rem;

    font-weight: 600;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px){

    #modalCotizacion .modal-dialog{

        margin: .75rem;

    }

    #modalCotizacion .modal-content{

        max-height: 95vh;

    }

    #modalCotizacion .modal-body{

        max-height: calc(95vh - 150px);

        padding: 1.25rem;

    }

    #modalCotizacion .modal-header{

        padding: 1.25rem;

    }

    #modalCotizacion .modal-footer{

        padding: 1rem 1.25rem;

    }

}

/* ==========================================
   GOOGLE reCAPTCHA
========================================== */

.grecaptcha-badge{

    visibility: hidden !important;

}

/* ==========================================
   AVISO GOOGLE reCAPTCHA
========================================== */

.recaptcha-notice{

    width:100%;

    padding:12px 20px;

    background:#111;

    color:#bdbdbd;

    font-size:.78rem;

    text-align:center;

    line-height:1.6;

}

.recaptcha-notice a{

    color:#ffffff;

    text-decoration:none;

    transition:.2s;

}

.recaptcha-notice a:hover{

    color:var(--color-principal);

}

/* ==========================================
   CTA
========================================== */

.cta-section{

    padding:90px 0;

}

.cta-box{

    background:linear-gradient(135deg,#0f172a,#1e293b);

    border-radius:24px;

    padding:60px;

    text-align:center;

    color:#fff;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.cta-box h2{

    font-size:2rem;

    font-weight:700;

    margin-bottom:15px;

}

.cta-box p{

    max-width:650px;

    margin:0 auto 35px;

    font-size:1.1rem;

    color:#d7d7d7;

}

.btn-cta{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 22px;

    width:auto;

    background:#0f172a;

    color:#fff !important;

    border:none;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-cta:hover{

    background:var(--color-principal);

    color:#fff !important;

    transform:translateY(-2px);

}

.btn-cta:hover{

    transform:translateY(-3px);

    background:#d38a00;

    color:#fff;

}

.contacto-card .btn-cta{

    width:auto;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

@media(max-width:768px){

    .cta-section{

        padding:70px 0;

    }

    .cta-box{

        padding:40px 25px;

    }

    .cta-box h2{

        font-size:1.6rem;

    }

    .cta-box p{

        font-size:1rem;

    }

    

}

/* ==========================================
   CONTACTO
========================================== */

.contacto-section{

    padding:90px 0;

}

.contacto-card{

    background:#fff;

    border-radius:20px;

    padding:32px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.contacto-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-bottom:22px;

    text-align:left;

}

.contacto-item > div:last-child{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.contacto-item:last-child{

    margin-bottom:0;

}

.contacto-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1rem;

    flex-shrink:0;

}

.contacto-item h5{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-bottom:3px;

    font-weight:700;

    color:#1f2937;

}

.contacto-item h5 i{

    color:var(--color-principal);

    font-size:.95rem;

}

.contacto-item p{

    margin:0;

    color:#666;

    line-height:1.45;

    text-align:center;

}



.mapa-card{

    height:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    min-height:500px;

}

.mapa-card iframe{

    width:100%;

    height:100%;

    border:none;

}

.contacto-btn{

    margin-top:10px;

}

.contacto-card .btn-cta{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:fit-content;

    width:-moz-fit-content;

    margin-top:15px;

    padding:12px 22px;

}
/* ==========================================
   CONTACTO RESPONSIVE
========================================== */

@media (max-width: 991.98px){

    .contacto-section{

        padding:70px 0;

    }

    .contacto-card{

        padding:30px 25px;

        margin-bottom:25px;

    }

    .contacto-item{

        gap:15px;

        margin-bottom:22px;

    }

    .contacto-icon{

        width:45px;

        height:45px;

        font-size:1rem;

    }

    .contacto-item h5{

        font-size:1rem;

    }

    .contacto-item p{

        font-size:.95rem;

        line-height:1.5;

    }

    .mapa-card{

        min-height:350px;

    }

}

@media (max-width: 767.98px){

    .contacto-section{

        padding:60px 0;

    }

    .contacto-card{

        padding:25px 20px;

        border-radius:16px;

    }

    .contacto-item{

        align-items:flex-start;

    }

    .contacto-icon{

        width:42px;

        height:42px;

        font-size:.95rem;

    }

    .contacto-item h5{

        font-size:.95rem;

    }

    .contacto-item p{

        font-size:.90rem;

    }

    
    .mapa-card{

        min-height:300px;

        border-radius:16px;

    }

}

@media (max-width: 575.98px){

    .contacto-section{

        padding:50px 0;

    }

    .contacto-card{

        padding:22px 18px;

    }

    .contacto-item{

        margin-bottom:18px;

    }

    .contacto-icon{

        width:40px;

        height:40px;

    }

    .mapa-card{

        min-height:260px;

    }

}

/* ==========================================
   FOOTER
========================================== */

.footer-landing{

    background:#081428;

    color:#FFF;

    padding:70px 0 35px;

    margin-top:0;

}

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-bottom:20px;

}

.footer-logo img{

    display:block;

    width:100%;

    max-width:280px;

    height:auto;

    margin:0 auto;

}

.footer-descripcion{

    max-width:720px;

    margin:0 auto 40px;

    text-align:center;

    color:rgba(255,255,255,.70);

    line-height:1.8;

}

.footer-contacto{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:40px;

}

.footer-contacto div{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    text-align:center;

    color:#FFF;

    font-size:.95rem;

}

.footer-contacto i{

    color:var(--primary);

    font-size:1.1rem;

}

.footer-nav{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:28px;

    margin-bottom:35px;

}

.footer-nav a{

    color:rgba(255,255,255,.80);

    transition:.30s;

    font-weight:500;

}

.footer-nav a:hover{

    color:var(--primary);

}

.footer-divider{

    border:none;

    border-top:1px solid rgba(255,255,255,.10);

    margin:35px 0;

}

.footer-copy{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:20px;

}

.footer-copy div{

    color:rgba(255,255,255,.65);

}

.footer-neuron{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-neuron span{

    font-size:.90rem;

}

.footer-neuron img{

    height:42px;

    width:auto;

}

.footer-recaptcha{

    margin-top:25px;

    text-align:center;

    color:rgba(255,255,255,.55);

    font-size:.78rem;

    line-height:1.7;

}

.footer-recaptcha a{

    color:#FFF;

}

.footer-recaptcha a:hover{

    color:var(--primary);

}

@media(max-width:992px){

    .footer-contacto{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-copy{

        flex-direction:column;

        text-align:center;

    }

}

@media(max-width:768px){

    .footer-landing{

        padding:55px 0 30px;

    }

    .footer-contacto{

        grid-template-columns:1fr;

        gap:16px;

    }

    .footer-nav{

        gap:16px;

    }

    .footer-neuron{

        flex-direction:column;

        gap:10px;

    }

    .footer-neuron img{

        height:34px;

    }

}

/* ==========================================
   WHATSAPP FLOTANTE
========================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:64px;

    height:64px;

    border-radius:50%;

    background:#25D366;

    color:#FFF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:all .30s ease;

    animation:whatsappPulse 2.5s infinite;

}

.whatsapp-float:hover{

    color:#FFF;

    transform:scale(1.08);

    box-shadow:0 14px 35px rgba(0,0,0,.35);

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:58px;

        height:58px;

        right:18px;

        bottom:18px;

        font-size:1.8rem;

    }

}

/*====================================
=            FLOTA NUEVA
====================================*/

.flota-wrapper{

    display:flex;

    justify-content:center;

}

.flota-box{

    width:90%;

    max-width:1320px;

    background:#fff;

    border-radius:24px;

    padding:10px 45px 45px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s;

}

.flota-box:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.flota-box-img{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    margin-top: -45px;
    

}

.flota-box-img img{

    display:block;

    width:70%;

    max-width:680px;

    min-width:420px;

    height:auto;

    margin:auto;

    filter:drop-shadow(0 18px 22px rgba(0,0,0,.18));
    

}

.flota-box-content{

    text-align:center;

}

.flota-box-content h3{

    font-size:2rem;

    font-weight:700;

    color:#0f172a;

    margin-bottom:35px;

}

.flota-beneficios{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px 50px;

    align-items:start;

}

.flota-item{

    display:grid;

    grid-template-columns:24px 1fr;

    align-items:start;

    gap:12px;

}

.flota-item i{

    color:#0d6efd;

    font-size:1.2rem;

    line-height:1.5;

}

.flota-item span{

    display:block;

    color:#475569;

    font-size:1.05rem;

    line-height:1.7;

}

@media (max-width:992px){

    .flota-box{

        padding:30px 20px;

    }

    .flota-box-img{

        margin-bottom:25px;

    }

    .flota-box-content h3{

        font-size:1.6rem;

    }

    .flota-beneficios{

        grid-template-columns:1fr;

        gap:18px;

    }

    .flota-box-img img{

        min-width:0;
        width:100%;
        max-width:100%;

    }

}

/* ==========================================================
   RESEÑAS
========================================================== */

.resenas{
    padding:90px 0;
    background:#f8fafc;
}

.resenas .section-title{
    text-align:center;
    margin-bottom:60px;
}

.resenas .section-title span{
    display:inline-block;
    color:#f4b400;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:10px;
}

.resenas .section-title h2{
    font-size:2.2rem;
    font-weight:700;
    color:#1b2430;
    margin-bottom:15px;
}

.resenas .section-title p{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    font-size:1.05rem;
}

.resenas-grid{
    column-count:3;
    column-gap:35px;
}

.resena-card{

    background:#fff;

    border-radius:18px;

    padding:22px;

    display:inline-block;

    width:100%;

    margin-bottom:35px;

    break-inside:avoid;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.resena-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.resena-avatar{

    width:100%;

    height:170px;

    border-radius:16px;

    overflow:hidden;

    margin-bottom:18px;

    position:relative;

    top:0;

    left:0;

    transform:none;

    border:none;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.resena-avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

.avatar-default{

    width:100%;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef2f6;

}

.avatar-default i{

    font-size:90px;

    color:#b6c0ca;

}

.resena-card h3{

    margin-bottom:8px;

    font-size:1.15rem;

    font-weight:700;

    color:#1f2937;

}

.resena-estrellas{

    margin-bottom:10px;

}

.resena-estrellas i{

    color:#f4b400;

    font-size:1rem;

    margin:0 1px;

}

.resena-comentario{

    width:100%;

    color:#4b5563;

    font-size:.97rem;

    line-height:1.7;

    text-align:left;

    word-break:break-word;

    overflow-wrap:anywhere;

}


.resena-footer{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    color:#6b7280;

    font-size:.90rem;

    margin-top:auto;

}

.resena-footer i{

    color:#4285F4;

    font-size:1rem;

}

.btn-resenas{

    background:#0d6efd;

    color:#fff;

    border:none;

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:.3s;

}

.btn-resenas:hover{

    background:#0b5ed7;

    transform:translateY(-2px);

}

.btn-resenas:disabled{

    opacity:.6;

    cursor:not-allowed;

    transform:none;

}

@media (max-width: 992px){

    .resenas-grid{
        column-count:2;
        column-gap:25px;
    }

    .resena-card{
        display:inline-block;
        width:100%;
        height:auto;
        margin-bottom:25px;
        break-inside:avoid;
    }

}

@media (max-width: 576px){

    .resenas-grid{
        column-count:1;
    }

    .resena-card{
        display:block;
        width:100%;
        height:auto;
        margin-bottom:20px;
    }

    

}