/* ======== HERO =========*/
.hero {
    height: 100vh;
    width: 100%;
    background-image: url(../img/background.png);
    /* aqui alinha nos eixos horizontal e vertical */
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position-y: 0px;
    position: relative;
}

.color-overlay {
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--second-bg-color);
    /* background: white; */
    opacity: 0.6;
    position: absolute;
}

.hero-container {
    z-index: 1;
    top: 30vh;
    width: 80vw;
    margin-left: 2rem;
    position: relative;
}

.hero-container h1 {
    font-size: var(--h1-heigth-sm);
    font-weight: 700;
    color: var(--second-color);
    line-height: 1.1;
    margin: 0.5rem 0;
}

.hero-container h3 {
    color: var(--second-color);
    font-size: var(--h3-heigth-sm);
    margin-bottom: 0.5rem;
}

.hero-container p {
    margin: 1rem 0;
}

@media(min-width: 840px) {

    .hero {
        height: 170vh;
        background-attachment: fixed;
    }

    .hero-container {
        top: 25vh;
        width: 90vw;
        margin-left: 5rem;
    }

    .hero-container h1 {
        font-size: var(--h1-heigth-lg);
        margin: 2rem 0 1rem 0;
    }

    .hero-container h3 {
        font-size: var(--h3-heigth-md);
        margin-bottom: 2rem;
    }

    .hero-container p {
        margin: 2rem 0;
    }

}