.hero-construtor {
    background: linear-gradient(135deg, #2b2b2b 0%, #3a3a3a 55%, #d9531e 140%);
    padding: 100px 20px 120px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin-top: 400px;
}

.badge-parceiro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 8px 6px 20px;
    margin-bottom: 40px;
}

.badge-umbler {
    font-weight: 700;
    font-size: 1em;
}

.badge-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #1f2937;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85em;
    font-weight: 600;
}

.campo-principal {
    font-size: 3em;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.2;
}

.destaque-claro {
    background: linear-gradient(90deg, #ff8a3d, #ffc266);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtexto-campo {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.botao-experimentar {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.botao-experimentar:hover {
    background: #fff;
    color: #d9531e;
}


/* ===== BENEFÍCIOS - CONSTRUTOR (classes exclusivas desta página) ===== */

.beneficios_costrutor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f5f1ee;
    border-radius: 16px;
}

.beneficio-card-construtor {
    background: transparent;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card-construtor:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    z-index: 2;
}

.beneficio-icone-construtor {
    width: 48px;
    height: 48px;
    background: #ffe0c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    margin-bottom: 16px;
}

.beneficio-card-construtor h3 {
    font-size: 1.2em;
    color: #1f2937;
    margin-bottom: 10px;
}

.beneficio-card-construtor p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95em;
}

.beneficio-destaque-construtor {
    background-color: #fce3cf;
    border-radius: 16px;
    padding: 24px;
}

.beneficio-badge-construtor {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #e8630f;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

/* ===== NOTEBOOK / TELAS MÉDIAS (até 1024px) ===== */
@media (max-width: 1024px) {

    .hero-construtor {
        margin-top: 250px;
        padding: 80px 20px 100px;
    }

    .campo-principal {
        font-size: 2.4em;
    }

    .beneficios_costrutor {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== TABLET (até 768px) ===== */
@media (max-width: 768px) {

    .hero-construtor {
        margin-top: 150px;
        padding: 60px 20px 80px;
    }

    .campo-principal {
        font-size: 2em;
    }

    .subtexto-campo {
        font-size: 1em;
        max-width: 90%;
    }

    .botao-experimentar {
        padding: 14px 32px;
        font-size: 1em;
    }

    .beneficios_costrutor {
        grid-template-columns: 1fr;
        margin: 40px auto;
        padding: 30px 20px;
    }
}


/* ===== CELULAR (até 480px) ===== */
@media (max-width: 480px) {

    .hero-construtor {
        margin-top: 80px;
        padding: 50px 15px 60px;
    }

    .campo-principal {
        font-size: 1.6em;
    }

    .badge-parceiro {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 16px;
    }

    .beneficios_costrutor {
        padding: 20px 15px;
        gap: 16px;
    }

    .beneficio-card-construtor h3 {
        font-size: 1.05em;
    }

    .beneficio-card-construtor p {
        font-size: 0.9em;
    }

    .beneficio-badge-construtor {
        font-size: 0.75em;
        padding: 3px 10px;
    }
}