/* =====================================================
   BANNER PRINCIPAL
===================================================== */

.banner-principal {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background: #0b294a;
}


.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}


/* =====================================================
   SLIDES
===================================================== */

.banner-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease;

    z-index: 1;
}


.banner-slide.ativo {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


.banner-slide picture {
    display: block;

    width: 100%;
    height: 100%;
}


.banner-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =====================================================
   SOBREPOSIÇÃO
===================================================== */

.banner-overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 29, 54, 0.90) 0%,
        rgba(7, 29, 54, 0.70) 35%,
        rgba(7, 29, 54, 0.18) 70%,
        rgba(7, 29, 54, 0.00) 100%
    );

    z-index: 2;
}


/* =====================================================
   CONTAINER DO CONTEÚDO
===================================================== */

.banner-container {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 94%;
    max-width: 1400px;
    height: 100%;

    display: flex;
    align-items: center;

    z-index: 3;
}


/* =====================================================
   CONTEÚDO
===================================================== */

.banner-conteudo {
    width: 650px;
    max-width: 55%;
}


/* =====================================================
   PEQUENA CHAMADA
===================================================== */

.banner-tag {
    display: block;

    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #0792bc;

    text-transform: uppercase;
}


/* =====================================================
   TÍTULOS
===================================================== */

.banner-conteudo h1,
.banner-conteudo h2 {
    margin: 0 0 22px 0;

    font-family: 'Oswald', Arial, Helvetica, sans-serif;

    font-size: 78px;
    line-height: 0.98;

    font-weight: 700;

    letter-spacing: -1px;

    color: #ffffff;

    text-transform: uppercase;
}


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

.banner-conteudo p {
    width: 100%;
    max-width: 530px;

    margin: 0 0 30px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;
    line-height: 1.55;

    font-weight: 400;

    color: #ffffff;
}


/* =====================================================
   BOTÃO
===================================================== */

.banner-botao {
    display: inline-block;

    padding: 16px 28px;

    background: #153b67;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
    text-decoration: none;

    border-radius: 3px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.banner-botao:hover {
    background: #0792bc;

    transform: translateY(-2px);
}


/* =====================================================
   SUSTENTABILIDADE
===================================================== */

.banner-sustentavel .banner-tag {
    color: #78a92d;
}


.banner-sustentavel .banner-botao {
    background: #78a92d;
}


.banner-sustentavel .banner-botao:hover {
    background: #5d861f;
}


/* =====================================================
   SETAS
===================================================== */

.banner-seta {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.50);

    background: rgba(7,29,54,0.20);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    z-index: 10;

    transition: background 0.3s ease;
}


.banner-seta:hover {
    background: #153b67;
}


.banner-anterior {
    left: 25px;
}


.banner-proximo {
    right: 25px;
}


/* =====================================================
   INDICADORES
===================================================== */

.banner-indicadores {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;

    z-index: 10;
}


.indicador {
    width: 30px;
    height: 4px;

    padding: 0;

    border: 0;

    background: rgba(255,255,255,0.45);

    cursor: pointer;

    transition: all 0.3s ease;
}


.indicador.ativo {
    width: 50px;

    background: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 1100px) {

    .banner-principal {
        height: 650px;
    }


    .banner-conteudo {
        max-width: 65%;
    }


    .banner-conteudo h1,
    .banner-conteudo h2 {
        font-size: 62px;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 768px) {

    .banner-principal {
        height: 680px;
        min-height: 680px;
    }


    .banner-slide img {
        object-position: center center;
    }


    .banner-overlay {
        background: linear-gradient(
            0deg,
            rgba(7,29,54,0.96) 0%,
            rgba(7,29,54,0.76) 45%,
            rgba(7,29,54,0.15) 100%
        );
    }


    .banner-container {
        width: 88%;

        align-items: flex-end;

        padding-bottom: 100px;
    }


    .banner-conteudo {
        width: 100%;
        max-width: 100%;
    }


    .banner-tag {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 2px;
    }


    .banner-conteudo h1,
    .banner-conteudo h2 {
        margin-bottom: 16px;

        font-size: 48px;
        line-height: 1;
    }


    .banner-conteudo p {
        max-width: 100%;

        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.5;
    }


    .banner-botao {
        padding: 14px 22px;

        font-size: 11px;
    }


    .banner-seta {
        display: none;
    }


    .banner-indicadores {
        bottom: 30px;
    }

}


/* =====================================================
   CELULAR PEQUENO
===================================================== */

@media screen and (max-width: 480px) {

    .banner-principal {
        height: 620px;
        min-height: 620px;
    }


    .banner-container {
        width: 86%;

        padding-bottom: 85px;
    }


    .banner-conteudo h1,
    .banner-conteudo h2 {
        font-size: 41px;
    }


    .banner-conteudo p {
        font-size: 14px;
    }

}