/* ================= INÍCIO ================= */
.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Ajuste aqui a opacidade */
    z-index: 1; /* Fica atrás do conteúdo */
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 2;
    flex-direction: column;
}

.hero-content {
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-logo {
    max-width: 800px;
    height: auto;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: #110C3D;
    z-index: 5; /* Coloca o título acima da imagem de fundo */
}

.btn-container {
    margin-top: 20px;
    z-index: 5; /* Coloca os botões acima da imagem de fundo */
    margin-bottom: 40px;
}


.btn {
    display: inline-block;
    background: #110C3D;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #E27C19;;
}

/* Responsividade: Ajustes para telas menores */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* reduz altura da seção hero no mobile */
        padding: 10px;
    }

    .hero-logo {
        max-width: 300px; /* reduz tamanho da logo no mobile */
    }

    .hero h1 {
        font-size: clamp(1rem, 4vw, 1.5rem); /* título menor no mobile */
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}