/* RESET E FONTES */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    color: #002d5b; 
    line-height: 1.6;
}

/* HEADER ESTILO WORDPRESS */
.main-header { background: #002d5b; padding: 15px 0; color: #fff; border-bottom: 3px solid #004a8d; }
.header-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 14px; }

/* SEÇÕES */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

.hero-section { padding: 60px 0; background: #fff; }

/* TITULOS IGUAIS AOS PRINTS */
h1 { color: #004a8d; font-size: 34px; font-weight: 800; margin-bottom: 25px; }
h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }

/* IMAGENS COM O ROUNDED DO PRINT */
.img-rounded { 
    width: 100%; 
    border-radius: 25px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

/* BOTÃO WHATSAPP GRADIENTE (IDÊNTICO AO PRINT) */
.btn-zap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid #075e54;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    max-width: 450px;
}

.btn-zap:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

/* SEÇÃO AZUL (EXECUÇÃO) */
.execucao-section { 
    background: #2b7cc4; /* Azul mais vivo conforme o print */
    padding: 80px 0; 
    color: #fff; 
}

/* FORMULÁRIO DE CAPTURA (Estilo Clean) */
.lead-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.input-lp {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .flex-block { flex-direction: column !important; text-align: center; }
    .text-block { padding: 0 !important; margin-top: 30px; }
    h1 { font-size: 28px; }
}

