html {
    scroll-behavior: smooth;
}



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


.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;
}





#planos {
    scroll-margin-top: 100px; /* Ajuste o valor conforme a altura da sua barra de menu */
    
}

/* Botão de Rolagem */
.rolamento-construtor {
  display: inline-block;
  background-color: #e8630f;
  color: #ffffff;         
  padding: 14px 28px;       
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;    
  border-radius: 8px;        
  transition: all 0.3s ease; 
  box-shadow: 0 4px 12px rgba(232, 99, 15, 0.3); 
}


.rolamento-construtor:hover {
  background-color: #d9531e; 
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 99, 15, 0.5); 
}

/* ===== 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: #eca66f;
    border-radius: 16px;
    margin-top: 300px;
}

.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;
}


/* =========================================================
   CARDS DE PLANOS (versão própria do Construtor, baseada
   nas mesmas regras do sytle.css, com nomes exclusivos)
   ========================================================= */

.titulo2-construtor {
    margin-top: 100px;
    text-align: center;
    font-size: 2.0em;
    margin-top: 300px;
}

.cartoes-construtor {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
    background-color: #aca692;
    border-radius: 16px;
    margin: 40px;
    margin-top: 100px;
}

.card-destaque-construtor {
    background: #f3f3f3;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 18px;
    min-height: 340px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-destaque-construtor:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-destaque-construtor h2 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.icone-plano-construtor {
    font-size: clamp(1.5em, 4vw, 3em);
    margin: 12px 0;
    color: #333;
    transition: font-size 0.2s ease;
}

.badge-construtor {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    color: #fff;
}

.badge-verde-construtor {
    background-color: #ff7b00;
}

.badge-vermelho-construtor {
    background-color: #dc8d26;
}

.texto-destaque-construtor {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
    margin: 16px 0 20px;
}

.butao-construtor {
    width: 100%;
    background: #9ca3af;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.butao-construtor:hover {
    background: #6b7280;
}





.suporte_costrutor {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    margin-top: 300px;
   
}

.suporte_costrutor h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
}

.pergunta {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.pergunta summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.pergunta summary::-webkit-details-marker {
    display: none;
}

.pergunta summary::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23333333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.pergunta summary:hover {
    color: #dc2626;
}

.pergunta[open] summary::after {
    transform: rotate(180deg);
}

.pergunta p {
    margin-top: 16px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
    padding-right: 40px;
}



/* =========================================================
   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);
    }

    .cartoes-construtor {
        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;
    }

    .titulo2-construtor {
        margin-top: 60px;
        font-size: 1.7em;
        padding: 0 20px;
    }

    .cartoes-construtor {
        grid-template-columns: repeat(2, 1fr);
        margin: 20px;
        padding: 20px;
        gap: 16px;
    }

    .card-destaque-construtor {
        min-height: 360px;
        padding: 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;
    }

    .titulo2-construtor {
        font-size: 1.5em;
        margin-top: 50px;
        padding: 0 20px;
    }

    .cartoes-construtor {
        grid-template-columns: 1fr;
        margin: 15px;
        padding: 16px;
        gap: 16px;
        border-radius: 12px;
    }

    .card-destaque-construtor {
        min-height: auto;
        padding: 20px;
    }

    .card-destaque-construtor h2 {
        font-size: 1.15em;
    }

    .icone-plano-construtor {
        font-size: 1.6em;
        margin: 8px 0;
    }

    .texto-destaque-construtor {
        font-size: 0.95em;
    }

    .butao-construtor {
        padding: 14px;
        font-size: 1em;
    }

}



