.hero {
    background-image: url(../img/background-hero.webp);
    background-size: cover;
    background-position: top center;
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 100px;
    background-repeat: no-repeat;
}

.logo-hero img {
    max-width: 100%;
    max-height: 200px;
    margin-bottom: 20px;
}

.texto-hero {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #1E1E1E;
    width: 37vw;
}

.botao-hero {
    background-color: #8D141A;
    color: #ffffff;
    border: 3px solid #8D141A;
    border-radius: 5px;
    padding: 15px 125px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

.botao-hero:hover {
    background-color: #ffffff;
    color: #8D141A;
    border: 3px solid #8D141A;
}

/* Media Queries */
@media (max-width: 1440px) {
    .texto-hero {
        font-size: 16px;
        width: 40vw;
    }

    .botao-hero {
        padding: 15px 80px;
    }
}

@media (min-width:769px) and (max-width: 1024px) {
    .texto-hero {
        font-size: 15px;
        width: 45vw;
    }

    .botao-hero {
        padding: 15px 60px;
    }

    .hero {
        background-image: url(../img/background-hero.webp);
        height: 100vh;
        background-position: right center;
        background-size:calc(150%);
    }
    

}

@media (min-width:427px) and (max-width: 768px) {
    .texto-hero {
        font-size: 14px;
        width: 60vw;
    }

    .botao-hero {
        padding: 15px 40px;
    }

    .hero {
        background-image: url(../img/background-litle-desktop.webp);
        height: 100vh;
        background-position: center;
        background-size:calc(105%);
       
    }
    
}

@media (max-width: 426px) {
    .hero {
        background-image: url(./img/background-mobile.webp);
        background-size: cover;
        background-position: center center;
        height: 95vh;
    }

    .texto-hero {
        width: 85vw;

    }

    .texto-hero p {
        font-size: 16px;
        text-align: justify;
        font-family: 'montserrat';
    }

    .botao-hero {
        width: 85vw;
    }

    .logo-hero img {
        max-height: 150px;

    }
}
