.headline {
    text-align: center;
    color: #fff;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.headline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
}

.headline__container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 6em 0;
    display: block;
}

.headline__titulo {
    text-transform: uppercase;
    font-size: 2em;
    line-height: 2;
}

.headline__titulo__destaque {
    color: rgb(229, 9, 20);
}

.headline__subtitulo,
.headline__subtitulo-2,
.headline__subtitulo-3,
.headline__subtitulo-4 {
    line-height: 1.5;
    font-weight: bold;
    display: block;
    margin: 1em 0;
}

.headline__subtitulo {
    font-size: 1.5em;
}

.headline__subtitulo-2 {
    font-size: 1.3em;
}

.headline__subtitulo-3 {
    font-size: 1.1em;
}

.headline__subtitulo-4 {
    font-size: 1em;
}

.headline__cta__link {
    margin-top: 2em;
    font-size: 1.3em;
}

.headline__cta__dica,
.headline__cta__dica-2 {
    display: block;
    margin-top: .4em;
}

.headline__cta__dica {
    font-size: 1em;
}

.headline__cta__dica-2 {
    font-size: .9em;
}

@media (min-width: 500px) {
    .headline__container {
        width: 85%;
    }
}

@media (min-width: 1500px) {
    .headline__container {
        max-width: 1500px;
    }
}