/* ============================================================
   GlobalEAD - Folha complementar para páginas de ação
   Uso sugerido:
   - pagamentos
   - liberações
   - formulários
   - instruções
   - páginas utilitárias comerciais

   Carregar DEPOIS de css/estilo.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap');

:root{
    --acao-ink:#0a1f44;
    --acao-title:#0b2f45;
    --acao-orange:#ff7a00;
    --acao-orange-dark:#df6900;
    --acao-blue:#1d64d8;
    --acao-bg:#f5f9ff;
    --acao-bg-soft:#eef5ff;
    --acao-border:#dbe6f0;
    --acao-text:#536273;
    --acao-muted:#758191;
    --acao-white:#ffffff;
    --acao-shadow:0 24px 70px rgba(15,42,84,.10);
}

*{box-sizing:border-box}

body{
    margin:0;
    padding:28px 0;
    background:#eef1f4;
    color:var(--acao-text);
    font-family:'Poppins',Arial,Helvetica,sans-serif;
}

/* ------------------------------------------------------------
   ESTRUTURA GERAL
   ------------------------------------------------------------ */

.acao-pagina{
    width:min(1100px,calc(100% - 48px));
    margin:0 auto;
    padding:52px 60px 90px;
    background:
        radial-gradient(circle at 15% 0%, rgba(29,100,216,.07), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,var(--acao-bg) 100%);
    box-shadow:0 8px 30px rgba(15,42,84,.08);
}

.acao-logo{
    text-align:center;
    margin:0 0 46px;
}

.acao-logo img{
    display:inline-block;
    width:min(270px,68vw);
    height:auto;
}

.acao-hero{
    width:100%;
    margin:0 auto 42px;
    text-align:center;
}


.acao-hero h1{
    max-width:900px;
    margin:0 auto 14px;
    color:var(--acao-ink);
    font-size:clamp(38px,5vw,64px);
    line-height:1.02;
    letter-spacing:-.045em;
    font-weight:800;
}

.acao-hero h1 span{
    color:var(--acao-orange);
}

.acao-hero p{
    max-width:760px;
    margin:0 auto;
    color:#627081;
    font-size:18px;
    line-height:1.6;
}

/* ------------------------------------------------------------
   CARTÕES
   ------------------------------------------------------------ */

.acao-card{
    position:relative;
    overflow:hidden;
    margin:0 0 28px;
    padding:40px;
    border:1px solid var(--acao-border);
    border-radius:26px;
    background:rgba(255,255,255,.96);
    box-shadow:var(--acao-shadow);
}

.acao-card:before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    top:-100px;
    right:-80px;
    background:rgba(255,122,0,.07);
    pointer-events:none;
}

.acao-card h2{
    position:relative;
    margin:0 0 12px;
    color:var(--acao-title);
    font-size:30px;
    line-height:1.12;
    font-weight:800;
}

.acao-card p{
    position:relative;
    max-width:760px;
    margin:0 auto 18px;
    color:#5f6d7c;
    font-size:16px;
    line-height:1.65;
}

/* ------------------------------------------------------------
   BLOCO DE CONTRATO / INFORMAÇÃO
   ------------------------------------------------------------ */

.acao-info-box{
    position:relative;
    margin:28px 0 22px;
    padding:24px;
    border:1px solid #d9e6f2;
    border-radius:18px;
    background:linear-gradient(180deg,#f9fcff 0%,#f3f8fd 100%);
}

.acao-documento-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:18px;
    color:var(--acao-blue);
    font-size:15px;
    font-weight:700;
    text-decoration:none;
}

.acao-documento-link:hover{
    text-decoration:underline;
    text-underline-offset:3px;
}

.acao-aceite{
    display:flex;
    gap:13px;
    align-items:flex-start;
    padding-top:18px;
    border-top:1px solid #dfe8f1;
}

.acao-aceite input[type=checkbox]{
    width:21px;
    height:21px;
    flex:0 0 auto;
    margin-top:2px;
    accent-color:var(--acao-orange);
    cursor:pointer;
}

.acao-aceite label{
    color:#394858;
    font-size:15px;
    line-height:1.5;
    cursor:pointer;
}

/* ------------------------------------------------------------
   AVISO DE ACEITE DO CONTRATO
   ------------------------------------------------------------ */

.acao-aceite{
    border-radius:12px;
    transition:background .18s ease,padding .18s ease,border-color .18s ease;
}

.acao-aceite.destacar{
    margin-top:10px;
    padding:16px;
    border-top:1px solid #ffd1a8;
    background:#fff3e8;
}

.acao-alerta-contrato{
    display:none;
    margin:18px 0 0;
    padding:14px 16px;
    border:1px solid #ffc18b;
    border-radius:12px;
    background:#fff3e8;
    color:#9a4a00;
    font-size:14px;
    font-weight:700;
    line-height:1.5;
    text-align:center;
}

.acao-alerta-contrato.visivel{
    display:block;
}

/* ------------------------------------------------------------
   BOTÃO PRINCIPAL
   ------------------------------------------------------------ */

.acao-botao{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:60px;
    margin-top:26px;
    padding:16px 22px;
    border:0;
    border-radius:14px;
    background:#dc3545;
    color:#ffffff;
    text-align:center;
    text-decoration:none;
    font-size:17px;
    font-weight:800;
    letter-spacing:.01em;
    cursor:pointer;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
}

.acao-botao:hover{
    background:#c82333;
    transform:translateY(-1px);
}

.acao-botao.ativo{
    background:linear-gradient(135deg,var(--acao-orange) 0%,#ff9a3c 100%);
    color:#fff;
    pointer-events:auto;
    cursor:pointer;
    box-shadow:0 16px 32px rgba(255,122,0,.22);
}

.acao-botao.ativo:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,var(--acao-orange-dark) 0%,var(--acao-orange) 100%);
}

.acao-aviso{
    margin-top:18px;
    color:var(--acao-muted);
    font-size:13px;
    line-height:1.5;
    text-align:center;
}

/* ------------------------------------------------------------
   VARIANTE DE DESTAQUE
   ------------------------------------------------------------ */

.acao-faixa{
    margin-bottom:28px;
    padding:18px 22px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--acao-ink),#153a73);
    color:#fff;
    box-shadow:0 18px 42px rgba(10,31,68,.16);
    text-align:center;
}

.acao-faixa strong{
    color:#fff;
}

.acao-faixa span{
    color:#ffb46e;
}

/* ------------------------------------------------------------
   RESPONSIVO
   ------------------------------------------------------------ */

@media(max-width:700px){
    .acao-pagina{
        width:calc(100% - 20px);
        padding:32px 18px 60px;
    }

    .acao-logo{
        margin-bottom:32px;
    }

    .acao-hero{
        margin-bottom:30px;
    }

    .acao-hero h1{
        font-size:clamp(34px,10vw,48px);
    }

    .acao-hero p{
        font-size:16px;
    }

    .acao-card{
        padding:28px 20px;
        border-radius:20px;
    }

    .acao-card h2{
        font-size:25px;
    }
}
