/*==================================
            NUESTRA FLOTA
==================================*/

.flota{

    padding:90px 0;

    background:#F7F9FC;

}

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

.section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#0D4FB5;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;

    font-weight:800;

    color:#0A234A;

    margin-bottom:20px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#6B7280;

    font-size:18px;

    line-height:1.8;

}

/*==================================
        GALERIA
==================================*/

.flota-grid{

    display:grid;

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

    gap:25px;

}

.flota-item{

    overflow:hidden;

    border-radius:18px;

    background:#FFF;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.flota-item:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(13,79,181,.15);

}

.flota-item img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.flota-item:hover img{

    transform:scale(1.08);

}

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

.flota-final{

    max-width:850px;

    margin:80px auto 0;

    text-align:center;

}

.flota-final p{

    color:#6B7280;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

/*==================================
        BOTON
==================================*/

.btn-principal{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 36px;

    background:#0D4FB5;

    color:#FFF;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:.30s;

}

.btn-principal:hover{

    background:#083B87;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(13,79,181,.25);

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1200px){

.flota-grid{

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

}

}

@media(max-width:992px){

.flota{

    padding:70px 0;

}

.section-title h2{

    font-size:38px;

}

.flota-grid{

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

}

}

@media(max-width:768px){

.section-title{

    margin-bottom:50px;

}

.section-title h2{

    font-size:32px;

}

.section-title p{

    font-size:17px;

}

.flota-grid{

    gap:20px;

}

.flota-item img{

    height:230px;

}

}

@media(max-width:576px){

.flota-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:28px;

}

.section-title p{

    font-size:16px;

}

.flota-final{

    margin-top:60px;

}

.flota-final p{

    font-size:16px;

}

.btn-principal{

    width:100%;

}

}