#home {
    background-image: url('photos/bg.webp'); /* Substitua pelo caminho correto */
    background-size: cover;
    background-position: center;
    height: 110vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white; /* Cor do texto */
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background: rgba(0, 0, 0, 0.4); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
}

/* Garante que o conteúdo fique acima do overlay */
.hero-content {
    position: relative;
    z-index: 2;
}


#home h3 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#home h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 480px) {
    #home h3{
        font-size: 12px
    }

    #home h1 {
        font-size: 25px;
    }

    #btn-saiba{
        font-size: 1.1rem;
    }
}
