.header {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    height: 600px;

    padding: 10px;

    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;

    width: 100%;
    height: 100%;

    background: linear-gradient(180deg, #f2997900 0%, #000000ab 100%);
}

.header__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

    z-index: 2;
}

/* Formulário */
.header__form {
    background-color: white;
    border: 1px solid #B5B5B5;

    padding: 20px 30px;

    max-width: 320px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header__form-title {
    font-size: 22px;
    text-align: center;
    color: #F29979;
}

.header__form-subtitle,
.header__form-paragrafo {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #8B8B8B;

    max-width: 300px;
}

.header__form-input {
    padding: 5px;

    width: 100%;
    min-width: 200px;

    font-size: 18px;

    border: 1px solid #B1B1B1;
    border-radius: 5px;

    box-sizing: border-box;
}

.header__form-input:focus {
    outline: none;
    border-color: #F29979;
    box-shadow: inset 0 0 0 1.5px #F29979;
}

.header__form-button {
    font-size: 18px;
    font-weight: bold;

    width: 100%;

    color: white;

    border: none;
    border-bottom: 3px solid #e7805a;
    border-right: 3px solid #e7805a;
    border-radius: 5px;

    background-color: #F29979;

    padding: 10px 20px;

    cursor: pointer;
}

.header__form-button:hover {
    border-bottom: 3px solid #f38f6a;
    border-right: 3px solid #f38f6a;

    background-color: #f3a488;
}

/* Conteúdo */
.header__conteudo {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.header__conteudo-title {
    max-width: 600px;
    font-size: 50px;
    color: white;
    text-transform: uppercase;
}

.header__conteudo-button {
    font-size: 20px;
    font-weight: bold;
    color: white;
    
    padding: 15px;

    background-color: #0387BB;

    border: none;
    border-bottom: 3px solid #006188;
    border-right: 3px solid #006188;
    border-radius: 5px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header__conteudo-button:hover {
    border-bottom: 3px solid #047faf;
    border-right: 3px solid #047faf;

    background-color: #0798d1;
}

.header__conteudo-button img {
    width: 30px;
}


/* Confiança */
.header__conteudo-confianca {
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 50px;
}

.header__conteudo-confianca-susep {
    font-weight: bold;
    font-size: 22px;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header__conteudo-confianca-susep img {
    max-width: 50px;
}

.header__conteudo-confianca-experiencia {
    text-align: center;
    font-weight: 800;
    line-height: 0.8;
    color: white;
}

.header__conteudo-confianca-experiencia span {
    font-size: 40px;
}


@media screen and (max-width: 950px){
    .header__container {
        gap: 30px;
    }

    /* ----- Conteúdo */
    .header__conteudo-title {
        font-size: 35px;
        width: 400px;
    }

    /* Formulário */
    .header__form {
        padding: 25px 20px;
        gap: 10px;
    }
}

@media screen and (max-width: 758px){
    /* ----- Conteúdo */
    .header__conteudo {
        gap: 20px;
    }

    .header__conteudo-title {
        font-size: 28px;
        width: 320px;
    }

    .header__conteudo-button {
        font-size: 18px;
    }

    /* Confiança */
    .header__conteudo-confianca {
        font-size: 20px;
        gap: 30px;
    }

    .header__conteudo-confianca-susep {
        font-size: 20px;
    }

    .header__conteudo-confianca-experiencia span {
        font-size: 30px;
    }
}

@media screen and (max-width: 662px){
    .header {
        align-items: start;

        height: auto;
    
        background-size: auto 80%;
        background-position: center top;
    }

    .header::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        z-index: 1;

        width: 100%;
        height: 80%;
    }

    .header__container {
        padding: 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    /* ----- Conteúdo */
    .header__conteudo {
        align-items: center;
        gap: 35px;
        margin-top: 200px;
    }

    .header__conteudo-title {
        font-size: 30px;
        text-align: center;
    }
}