/* ============================================================
   BASE — mantém visual original do desktop
============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0d2c5a;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.hero { padding: 0; }

.content {
    max-width: 720px;
    margin: 0 auto;
}

.content-texto {
    background: rgba(255,255,255,.05);
    border-radius: 16px;
    margin: 0 12px 24px;
    padding: 28px 20px;
}

.logo-desbravahelp {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
    padding-top: 24px;
}

.imagem {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}

.tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffc928;
    text-transform: uppercase;
    margin-bottom: 12px;
}

h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

h2 span { color: #ffc928; }

h1 {
    font-size: clamp(42px, 10vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 strong {
    color: #ffc928;
    display: block;
}

.descricao {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin: 0 auto 28px;
    padding: 0 20px;
    text-align: center;
    max-width: 560px;
}

@media (max-width: 480px) {
    .descricao {
        font-size: 14px;
        padding: 0 8px;
        text-align: center;
        line-height: 1.8;
    }
    .tag { font-size: 10px; letter-spacing: 2px; }
    h2 { font-size: 18px; }
    h1 { font-size: 40px; }
    .content-texto { padding: 20px 16px; margin: 0 8px 20px; }
}

/* ============================================================
   RECURSOS
============================================================ */
.recursos {
    max-width: 560px;
    margin: 0 auto 28px;
    text-align: left;
    padding: 0 20px;
}

.recursos-titulo {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    color: #ffc928;
}

.recursos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.recurso-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================================
   BOTÕES
============================================================ */
.botao {
    display: inline-block;
    background: #ffc928;
    color: #0d2c5a;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,201,40,.35);
}

.botao-hero {
    font-size: 16px;
    padding: 18px 32px;
    margin-bottom: 12px;
}

.botao-enviar {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    margin-top: 8px;
}

.seguro {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 8px;
}

/* ============================================================
   MODAL
============================================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.ativo { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: modalEntra .25s ease;
}

@keyframes modalEntra {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.fechar {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.fechar:hover { color: #333; }

.modal-header { text-align: center; margin-bottom: 20px; }
.modal-icone  { font-size: 40px; margin-bottom: 10px; }
.modal-header h2 { font-size: 20px; color: #0d2c5a; margin-bottom: 8px; }
.textoModal { font-size: 14px; color: #555; line-height: 1.5; }

/* ============================================================
   FORMULÁRIO
============================================================ */
.form-group { text-align: left; margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0d2c5a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    color: #222;
    background: #f8f9fa;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus {
    border-color: #0d2c5a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13,44,90,.08);
}

.captcha-pergunta { color: #0d2c5a; font-size: 15px; }

.form-erro {
    background: #fff3cd;
    border: 1px solid #ffc928;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #856404;
    margin-bottom: 12px;
    text-align: left;
}

/* ============================================================
   CUPOM
============================================================ */
.cupom {
    font-size: 32px;
    font-weight: bold;
    color: #0d2c5a;
    letter-spacing: 4px;
    border: 3px dashed #ffc928;
    background: #fff8d7;
    padding: 20px;
    border-radius: 10px;
    margin: 16px 0;
}

/* ============================================================
   VÍDEO YOUTUBE
============================================================ */
.video-wrap {
    max-width: 640px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.ratio-16x9 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.ratio-16x9 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: rgba(0,0,0,.2);
    padding: 20px 16px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 480px) {
    .hero { padding: 24px 12px 40px; }
    .logo-desbravahelp { width: 100px; }
    .botao-hero { width: 100%; font-size: 15px; padding: 16px 20px; }
    .recurso-item { flex: 1 1 100%; min-width: unset; font-size: 14px; text-align: center; }
    h1 { font-size: 44px; }
    .modal-content { padding: 24px 18px; }
    .cupom { font-size: 26px; letter-spacing: 2px; }
    .recursos { text-align: center; }
    .recursos-grid { gap: 8px; justify-content: center; }
}