.hero{
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-sobre-home-new.webp);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

}
.hero-cover{
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.801);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content{
    width: 50%;
    padding: 1em;
    z-index: 2;
}
.hero-titulo{
    margin-top: 4em;
}
.hero-titulo h1{
    font-size: 50px;
    font-weight: 700;
    color: white;
}
.hero-titulo-name{
    color: var(--primary-gold);
}

.hero-text {
    margin-top: 2em;
    padding: 1em;
}
.hero-text p{
    font-size: 20px;
    color: white;
    text-align: center;
    padding-top: 1em;
    line-height: 24px;
}

.hero-cta{
    padding: 1em;
    margin-top: 5em;
    width: 100%;
    text-align: center;
}
.hero-cta-link{
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    padding: .9em 2em;
    background-color: var(--primary-yellow);
    border-radius: 50px;
}


.hero-cta-link:hover{
    color: var(--primary-yellow);
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
@keyframes pulse-ultimate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


.hero-contato{
    width: 70px;
    padding: 1em;
    position: fixed;
    bottom: 10px;
    right: 10px;
    animation: pulse 2s infinite;
}
.hero-contato:hover {
    
    animation: pulse-ultimate 2s infinite;
}

@media screen and (max-width: 768px){
    
    .hero{
        flex-direction: column;
        background-attachment:scroll;
        background-position: center;
    }
    .hero-cover{
        display: block;
    }
    .hero-content{
        width: 100%;
        padding: 0;
    }

    .hero-titulo h1{
        font-size: 25px;
    }
    .hero-text p{
        font-size: 18px;
        letter-spacing: 2px;
        line-height: 22px;
    }
    .hero-cta{
        margin-top: 1em;
        width: 90%;
    }
    .hero-cta-link{
        font-size: 16px;
    }
    
    .content-right{
        display: none;
    }
}

