/*=========================================================
BANNER / HERO
=========================================================*/

.banner{
    position: relative;
    height: 650px;
    overflow: hidden;
}

/*SLIDER*/
.banner__slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}
.banner__slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    transform:scale(1.15);
    transition:
        opacity 1.4s ease,
        transform 7s ease;
}

.banner__slide.active{
    opacity:1;
    transform:scale(1);
}
.banner__dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    transition:.35s;
    cursor:pointer;
}

.banner__dot.active{
    width:40px;
    border-radius:20px;
    background:#0d6efd;
}
/*FLECHAS*/
.banner__prev,
.banner__next{
    opacity:0;
    transition:.35s;
}
.banner:hover .banner__prev,
.banner:hover .banner__next{
    opacity:1;
}
/*==========================
CAPA OSCURA
==========================*/
.banner__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}
/*==========================
CONTENIDO
==========================*/
.banner__contenido{
    position: absolute;
    inset: 0;
    z-index: 3;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    padding:110px 20px 40px; /* <-- antes era 0 20px */
}
/* .banner .container{
    min-height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
} */
.banner__contenido .mt-4{
    margin-top:25px !important;
}
/*==========================
TEXTOS
==========================*/
.banner__titulo{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    text-shadow:0 4px 20px rgba(0,0,0,.45);
}

.banner__contenido p{
    max-width:850px;
    font-size:1.25rem;
    line-height:1.8;
    margin-bottom:35px;
    color:#f8fafc;
    text-shadow:0 2px 12px rgba(0,0,0,.35);
}

/*==========================
BOTONES
==========================*/

.btn__contactanos{
    display:inline-block;
    padding:14px 34px;
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    border:2px solid #0d6efd;
}

.btn__contactanos:hover{
    background:#fff;
    color:#0d6efd;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(13,110,253,.30);
}

.banner .btn-outline-light{
    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
    transition:.35s;
}

.banner .btn-outline-light:hover{
    transform:translateY(-4px);
}

/*==========================
INDICADORES
==========================*/

.banner__dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:5;
}

.banner__dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.banner__dot.active{
    width:35px;
    border-radius:20px;
    background:#0d6efd;
}

/*==========================
FLECHAS
==========================*/

.banner__prev,
.banner__next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.20);
    color:#fff;
    backdrop-filter:blur(10px);
    cursor:pointer;
    z-index:6;
    transition:.30s;
}

.banner__prev:hover,
.banner__next:hover{
    background:#0d6efd;
}

.banner__prev{
    left:30px;
}
.banner__next{
    right:30px;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width:991px){
    .banner{
        height:600px;
    }
    .banner__titulo{
        font-size:2.5rem;
    }
    .banner__contenido p{
        font-size:1.05rem;
        padding:0 20px;
    }
    .banner__prev,
    .banner__next{
        display:none;
    }
}

@media (max-width:768px){
    .banner{
        height:520px;
    }
    .banner__titulo{
        font-size:2rem;
    }

    .banner__contenido p{
        font-size:1rem;
    }
    .btn__contactanos{
        display:block;
        width:100%;
        margin-bottom:15px;
    }

    .banner .btn-outline-light{
        display:block;
        width:100%;
    }
}

@media (max-width:576px){
    .banner{
        height:480px;
    }
    .banner__titulo{
        font-size:1.6rem;
    }
    .banner__contenido p{
        font-size:.95rem;
    }
}

/*temporal */
.banner__contenido .mt-4{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
    z-index:9999;
}

.banner__contenido .mt-4 a{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
}

/* .banner__contenido{
    transform:none !important;
} */