/* =====================================================
   PARALLAX - ESPECIALISTA
===================================================== */

.parallax-especialista {
    position: relative;

    width: 100%;
    height: 500px;

    background-image: url("../img/parallax-especialista.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;
}


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

.especialista-overlay {
    position: absolute;

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

    background: rgba(31, 20, 8, 0.28);

    z-index: 1;
}


/* =====================================================
   CONTAINER
===================================================== */

.especialista-container {
    position: relative;

    width: calc(100% - 90px);
    max-width: 1310px;

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    z-index: 2;
}


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

.especialista-conteudo {
    width: 100%;

    max-width: 760px;
}


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

.especialista-tag {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

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

    font-size: 11px;
    line-height: 1;

    font-weight: 400;

    letter-spacing: 4px;

    color: rgba(255,255,255,0.80);

    text-transform: uppercase;
}


.especialista-tag:before {
    content: "";

    width: 42px;
    height: 1px;

    background: rgba(255,255,255,0.75);
}


/* =====================================================
   TÍTULO
===================================================== */

.especialista-conteudo h2 {
    margin: 0 0 24px 0;

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

    font-size: 58px;

    line-height: 1.03;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #ffffff;

    text-transform: uppercase;
}


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

.especialista-conteudo p {
    max-width: 620px;

    margin: 0 0 32px 0;

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

    font-size: 17px;

    line-height: 1.6;

    font-weight: 400;

    color: #ffffff;
}


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

.especialista-botao {
    display: inline-block;

    padding: 16px 27px;

    background: #153b67;

    color: #ffffff;

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

    font-size: 11px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;

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


.especialista-botao:hover {
    background: #ffffff;

    color: #153b67;

    transform: translateY(-2px);
}


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

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

    .parallax-especialista {
        height: 470px;
    }


    .especialista-container {
        width: calc(100% - 60px);
    }


    .especialista-conteudo h2 {
        font-size: 50px;
    }

}


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

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

    .parallax-especialista {
        height: 500px;

        background-image: url("../img/parallax-especialista-mobile.jpg");

        background-attachment: scroll;

        background-position: center center;
    }


    .especialista-overlay {
        background: rgba(31,20,8,0.36);
    }


    .especialista-container {
        width: calc(100% - 44px);

        align-items: center;
    }


    .especialista-tag {
        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 3px;

        gap: 10px;
    }


    .especialista-tag:before {
        width: 30px;
    }


    .especialista-conteudo h2 {
        margin-bottom: 20px;

        font-size: 40px;

        line-height: 1.05;
    }


    .especialista-conteudo p {
        margin-bottom: 27px;

        font-size: 15px;

        line-height: 1.6;
    }


    .especialista-botao {
        padding: 15px 21px;

        font-size: 10px;
    }

}


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

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

    .parallax-especialista {
        height: 460px;
    }


    .especialista-conteudo h2 {
        font-size: 35px;
    }

}