/* =======================
   ESTILOS DA SEÇÃO DE INTRODUÇÃO
   ======================= */
@charset "utf-8";

.intro {
    text-align: center;
    padding: 80px 20px;
    background: url('../img/fazeventus1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    color: white;
    position: relative;
}
.intro {
    text-align: center;
    padding: 80px 20px;
    background: url('../img/fazeventus1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    color: white;
    position: relative;
}

/* Adiciona um filtro escuro na imagem de fundo */
.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Ajusta a posição dos textos sobre o fundo escuro */
.intro h1, .intro p, .impact, .cta, .btn-orcamento {
    position: relative;
    z-index: 2;
}

.intro h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.intro p {
    font-size: 18px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.impact {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-orcamento {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    max-width: 200px;
    width: auto;
}

.btn-orcamento:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* =======================
   RESPONSIVIDADE
   ======================= */
@media (max-width: 1024px) {
    .intro {
        padding: 70px 15px;
        height: 80vh;
    }
    .intro h1 {
        font-size: 32px;
    }
    .btn-orcamento {
        font-size: 12px;
        padding: 6px 12px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 50px 10px;
        height: auto;
        min-height: 70vh;
        background-attachment: scroll;
        background-size: cover;
    }
    .intro h1 {
        font-size: 28px;
    }
    .btn-orcamento {
        font-size: 12px;
        padding: 5px 10px;
        max-width: 150px;
    }
}