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

:root{
    --blue-950:#001f4d;
    --blue-900:#00295f;
    --blue-850:#053875;
    --blue-800:#063f91;
    --blue-700:#0755c9;
    --blue-600:#0f66df;
    --blue-500:#2781ef;
    --green:#72c938;
    --green-dark:#55ad24;
    --mint:#02a978;
    --mint-dark:#008d66;
    --ink:#092d64;
    --text:#4e657d;
    --muted:#8795a6;
    --line:#dfe7ef;
    --soft:#f5f7fa;
    --white:#fff;
    --shadow:0 18px 50px rgba(1,39,84,.11);
    --shadow-soft:0 8px 28px rgba(1,39,84,.08);
    --radius:18px;
    --container:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-width:320px;
    font-family:"Poppins",Arial,sans-serif;
    color:var(--ink);
    background:#fff;
    font-size:15px;
    line-height:1.58;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{cursor:pointer}
img{display:block;max-width:100%}
.container{width:min(var(--container),calc(100% - 48px));margin-inline:auto}
.ki-icon{display:inline-block;flex:0 0 auto;vertical-align:middle}

/* CABEÇALHO */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    height:86px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid #edf1f5;
    box-shadow:0 3px 14px rgba(0,34,78,.045);
    backdrop-filter:blur(12px);
}
.site-header .container{width:min(1424px,calc(100% - 64px))}
.header-inner{
    height:100%;
    display:flex;
    align-items:center;
    gap:30px;
}
.brand{
    width:235px;
    flex:0 0 235px;
    display:flex;
    align-items:center;
}
.brand img{
    width:auto;
    height:70px;
    max-width:100%;
    object-fit:contain;
}
.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:38px;
    flex:1;
}
.main-nav a,.header-login{
    position:relative;
    color:#08295d;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}
.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-10px;
    height:2px;
    background:var(--blue-700);
    transition:right .22s ease;
}
.main-nav a:hover::after{right:0}
.header-actions{display:flex;align-items:center;gap:20px;flex:0 0 auto}
.mobile-menu-button{display:none;padding:8px;border:0;background:transparent;color:var(--ink)}
.nav-backdrop{display:none}

/* BOTÕES */
.btn{
    min-height:44px;
    padding:11px 20px;
    border:0;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-size:13px;
    font-weight:700;
    line-height:1.2;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
    color:#fff;
    background:linear-gradient(180deg,#0a5ed7,#0748ad);
    box-shadow:0 8px 18px rgba(4,76,180,.2);
}
.btn-primary:hover{box-shadow:0 11px 24px rgba(4,76,180,.28)}
.btn-header{
    min-width:142px;
    min-height:40px;
    padding:10px 20px;
    border-radius:8px;
    font-size:12px;
}
.btn-green{
    color:#fff;
    background:linear-gradient(180deg,#06af7c,#019766);
    box-shadow:0 8px 18px rgba(0,155,103,.2);
}
.btn-green:hover{background:linear-gradient(180deg,#08b783,#008e61)}
.btn-light{color:var(--blue-800);background:#fff;border:1px solid rgba(255,255,255,.72)}
.btn-outline-light{color:#fff;background:transparent;border:1px solid rgba(255,255,255,.45)}
.btn-block{width:100%}
.btn-small{min-height:36px;padding:8px 12px;border-radius:7px;font-size:11px}
.button-lock{width:14px;height:14px;margin-left:auto}

/* PRIMEIRA DOBRA */
.landing-hero{position:relative;background:#fff}
.hero-dark{
    position:relative;
    min-height:486px;
    overflow:visible;
    color:#fff;
    background:
        radial-gradient(circle at 18% 10%,rgba(28,109,210,.26),transparent 32%),
        linear-gradient(112deg,#00285d 0%,#00295f 43%,#001f4d 100%);
}
.hero-pattern{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    opacity:.58;
    background-image:radial-gradient(circle at 1px 1px,rgba(45,150,239,.42) 1px,transparent 1.1px);
    background-size:16px 16px;
    mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.75) 34%,transparent 66%);
}
.hero-grid{
    position:relative;
    min-height:486px;
    padding-top:29px;
}
.problem-side{width:min(700px,calc(100% - 490px));min-width:0}
.section-kicker{
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:.075em;
    font-weight:700;
}
.section-kicker.light{color:#51b8f3}
.section-kicker.light::after{
    content:"";
    display:block;
    width:20px;
    height:2px;
    margin-top:7px;
    border-radius:5px;
    background:#4db8ef;
}
.problem-heading-line{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin:5px 0 12px;
}
.problem-heading-line h1{
    margin:0;
    max-width:620px;
    color:#fff;
    font-size:clamp(33px,2.5vw,39px);
    line-height:1.12;
    letter-spacing:-.035em;
    font-weight:700;
}
.subtle-link{
    margin-left:auto;
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#50b9f5;
    font-size:11px;
    font-weight:500;
    white-space:nowrap;
}
.subtle-link:hover{color:#8bd5ff}
.hero-intro{
    max-width:660px;
    margin:0 0 18px;
    color:#d9e4f1;
    font-size:13px;
    line-height:1.65;
}
.hero-info-list{display:grid;gap:10px;margin:0}
.hero-info-card{
    position:relative;
    display:grid;
    grid-template-columns:58px minmax(0,1fr);
    align-items:center;
    gap:18px;
    padding:16px 20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.035);
    border-radius:13px;
    background:linear-gradient(135deg,rgba(8,69,142,.68),rgba(4,49,106,.52));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.025),0 10px 28px rgba(0,21,57,.12);
}
.hero-info-card::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(90deg,rgba(37,117,209,.08),transparent 52%);
}
.hero-info-card-blue{min-height:160px}
.hero-info-card-green{min-height:75px;padding-top:10px;padding-bottom:10px}
.hero-info-card>*{position:relative;z-index:1}
.hero-info-icon{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
}
.hero-info-icon svg{width:27px;height:27px}
.hero-info-icon-blue{
    background:linear-gradient(145deg,#265ef1,#153bd1);
    box-shadow:0 10px 22px rgba(17,52,196,.34),inset 0 1px 0 rgba(255,255,255,.22);
}
.hero-info-icon-green{
    background:linear-gradient(145deg,#10b98f,#05816d);
    box-shadow:0 10px 22px rgba(0,139,104,.3),inset 0 1px 0 rgba(255,255,255,.22);
}
.hero-info-card p{
    margin:0;
    color:#f4f7fb;
    font-size:13px;
    line-height:1.62;
}
.hero-info-card p strong{font-weight:700}
.hero-info-blue-text{color:#5bbbf5}
.hero-info-green-text{color:#7ad33d}

/* CARD DO MANUAL */
.manual-card{
    position:absolute;
    z-index:20;
    top:14px;
    right:28px;
    width:436px;
    height:790px;
    padding:20px 26px 18px;
    overflow:hidden;
    color:#0a2c62;
    background:#fff;
    border:1px solid #e2e7ec;
    border-radius:18px;
    box-shadow:0 20px 48px rgba(0,25,58,.16);
}
.manual-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#009164;
    font-size:10px;
    font-weight:700;
}
.free-badge{
    display:inline-flex;
    align-items:center;
    min-height:25px;
    padding:5px 12px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(180deg,#08aa78,#008e65);
    font-size:10px;
    font-weight:800;
}
.manual-card h2{
    margin:14px 0 10px;
    color:#0b2b61;
    font-size:25px;
    line-height:1.12;
    letter-spacing:-.03em;
}
.manual-card>p{
    margin:0 0 14px;
    padding-left:0;
    border:0;
    color:#183865;
    font-size:12px;
    line-height:1.6;
}
.manual-card>p strong{color:#09295f}
.manual-list-box{
    min-height:133px;
    margin-bottom:12px;
    padding:14px;
    border-radius:10px;
    background:#f5f7f9;
}
.mini-heading{
    margin:0 0 9px;
    color:#8faccc;
    font-size:9px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.mini-heading.dark{color:#153865}
.manual-checks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 16px;
    color:#173865;
    font-size:9.5px;
    line-height:1.45;
}
.manual-checks span{display:flex;align-items:flex-start;gap:7px}
.manual-checks svg{margin-top:1px;color:#00a875}
.manual-course-banner{
    min-height:62px;
    padding:9px 16px;
    display:grid;
    grid-template-columns:48px 1fr auto;
    align-items:center;
    gap:13px;
    color:#fff;
    border-radius:9px;
    background:linear-gradient(100deg,#0962df,#064cc3);
    box-shadow:0 9px 20px rgba(4,75,184,.18);
}
.manual-course-icon{
    width:48px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:8px;
    background:rgba(255,255,255,.08);
}
.manual-course-banner small{display:block;margin-bottom:2px;font-size:8px;font-weight:700;letter-spacing:.02em}
.manual-course-banner strong{display:block;font-size:13px;line-height:1.1}
.manual-course-arrow{font-size:24px;font-weight:300}
.manual-divider{height:1px;margin:14px 0 11px;background:#dce3ea}
.lead-form h3{margin:0 0 10px;color:#0b2c61;font-size:11px}
.lead-form label{
    display:block;
    margin-bottom:14px;
    color:#173865;
    font-size:10.5px;
    font-weight:500;
}
.lead-form label span{color:#8090a3;font-weight:400}
.lead-form input{
    width:100%;
    height:43px;
    margin-top:4px;
    padding:0 13px;
    outline:none;
    color:#173865;
    background:#fff;
    border:1px solid #d8e0e8;
    border-radius:7px;
    transition:border-color .2s ease,box-shadow .2s ease;
}
.lead-form input::placeholder{color:#8f9ba9}
.lead-form input:focus{border-color:#4f89ce;box-shadow:0 0 0 3px rgba(46,119,199,.1)}
.lead-form .btn{min-height:46px;margin-top:1px;font-size:12px}
.form-privacy{
    margin:10px 0 0;
    text-align:center;
    color:#7d8b9d;
    font-size:9px;
}
.form-privacy span{margin-right:5px;color:#8a99aa}
.form-rating{display:none}
.form-success{display:none;margin-top:9px;padding:9px;border-radius:7px;background:#edf9e9;color:#3e8128;font-size:10px;text-align:center}
.form-success.show{display:block}

/* SELEÇÃO DE PROBLEMAS */
.problem-selection{
    min-height:452px;
    padding:18px 0 22px;
    background:#fff;
}
.problem-layout{
    display:grid;
    grid-template-columns:minmax(0,722px) 436px;
    min-height:423px;
    justify-content:space-between;
    gap:48px;
}
.problem-selector{min-width:0;transform:translateX(-15px)}
.problem-selector-title{
    min-height:30px;
    margin-bottom:3px;
    display:grid;
    grid-template-columns:92px auto 92px;
    align-items:center;
    justify-content:center;
    gap:22px;
    color:#08275b;
}
.problem-selector-title span{height:2px;background:#246df1}
.problem-selector-title h2{margin:0;font-size:16px;line-height:1.3;text-align:center;white-space:nowrap}
.problem-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px 14px;
}
.problem-card{
    min-height:57px;
    padding:7px 13px;
    display:grid;
    grid-template-columns:40px minmax(0,1fr) 18px;
    align-items:center;
    gap:10px;
    color:#08275b;
    text-align:left;
    background:#fff;
    border:1px solid #dbe3eb;
    border-radius:10px;
    box-shadow:0 4px 11px rgba(4,42,91,.045);
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.problem-card:hover,.problem-card.is-active{
    transform:translateY(-1px);
    border-color:#bdd0e5;
    box-shadow:0 8px 18px rgba(4,42,91,.08);
}
.problem-icon{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:50%;
    font-size:18px;
    font-weight:700;
}
.problem-icon.indigo{color:#4f51df;background:#eef0ff}
.problem-icon.gray{color:#214d82;background:#edf3fb}
.problem-icon.green{color:#37a317;background:#edf8e9}
.problem-icon.purple{color:#7d4ee9;background:#f2ebff}
.problem-icon.cyan{color:#228fd8;background:#e9f7ff}
.problem-icon.teal{color:#139d8b;background:#e8f8f6}
.problem-icon.mint{color:#0a9d75;background:#e7f8f2}
.problem-icon.blue{color:#075ce7;background:#e8f0ff}
.problem-icon.violet{color:#7044d7;background:#f1ebff}
.problem-icon.rose{color:#fb4551;background:#ffeded}
.problem-copy{display:flex;flex-direction:column;min-width:0}
.problem-copy strong{overflow:hidden;color:#08275b;font-size:12px;line-height:1.2;text-overflow:ellipsis;white-space:nowrap}
.problem-copy small{width:max-content;max-width:100%;margin-top:4px;color:#596af2;font-size:9px;line-height:1.2}
.problem-card:nth-child(3) small{color:#36a417}
.problem-card:nth-child(4) small,.problem-card:nth-child(9) small{color:#7c4ee7}
.problem-card:nth-child(5) small{color:#228fd8}
.problem-card:nth-child(6) small,.problem-card:nth-child(7) small{color:#129779}
.problem-card:nth-child(8) small{color:#075ce7}
.problem-card:nth-child(10) small{color:#fb4551}
.problem-arrow{color:#062a64;font-size:25px;font-weight:300;line-height:1}
.all-problems-link{
    width:max-content;
    margin:24px auto 0;
    display:flex;
    align-items:center;
    gap:10px;
    color:#0758d6;
    font-size:12px;
    font-weight:700;
}
.all-problems-link span{font-size:20px;line-height:1}
.problem-side-link{
    margin-right:0;
    padding-bottom:3px;
    transform:translateX(-28px);
    display:flex;
    align-items:flex-end;
}
.catalog-quick-link{
    width:100%;
    min-height:47px;
    padding:10px 17px;
    display:grid;
    grid-template-columns:28px 1fr auto;
    align-items:center;
    gap:11px;
    color:#0756ce;
    border:1.5px solid #075fe1;
    border-radius:8px;
    background:#fff;
    font-size:11.5px;
    transition:background .2s ease,box-shadow .2s ease;
}
.catalog-quick-link:hover{background:#f7faff;box-shadow:0 8px 20px rgba(5,87,208,.08)}
.catalog-quick-icon{display:grid;place-items:center}
.catalog-quick-link strong{font-weight:700}
.catalog-quick-link>span:last-child{font-size:21px;font-weight:300}

/* BLOCO DE TRIAGEM */
.section-white,.section-soft{padding:82px 0}
.section-white{background:#fff}
.section-soft{background:#f8fafc}
.content-hub{border-top:1px solid #edf1f5}
.content-hub-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:70px;align-items:center}
.analysis-card{
    overflow:hidden;
    color:#fff;
    background:linear-gradient(145deg,#05366f,#002a5d);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    box-shadow:0 20px 45px rgba(0,31,75,.16);
}
.analysis-title-row{display:flex;gap:13px;align-items:center;padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.09)}
.round-icon{width:40px;height:40px;border-radius:50%;display:grid;place-items:center;background:#0a4e9b;color:#fff;box-shadow:inset 0 0 0 1px rgba(255,255,255,.09)}
.analysis-title-row h2{margin:0 0 2px;font-size:16px}
.analysis-title-row p{margin:0;color:#9eb9d7;font-size:11px}
.analysis-lead{margin:0;padding:20px 20px 12px;color:#d1deec;font-size:12px;line-height:1.75}
.analysis-card .mini-heading{margin:5px 20px 10px}
.analysis-steps{padding:0 20px 10px;display:grid;gap:10px}
.analysis-step{display:flex;gap:12px;align-items:flex-start}
.analysis-step>span{width:25px;height:25px;border-radius:50%;background:#0a4b88;color:#9ed0ff;display:grid;place-items:center;font-size:8px;font-weight:700;flex:0 0 auto}
.analysis-step strong{display:block;margin-bottom:2px;font-size:11px}
.analysis-step p{margin:0;color:#9fb9d4;font-size:9.5px;line-height:1.55}
.evaluation-box{margin:7px 20px 13px;padding:13px;border-radius:10px;background:rgba(255,255,255,.055)}
.evaluation-box .mini-heading{margin:0 0 9px}
.evaluation-grid{display:grid;grid-template-columns:1fr 1fr;gap:7px 18px;color:#bfd0e2;font-size:9.5px}
.evaluation-grid span{display:flex;align-items:center;gap:6px}
.evaluation-grid svg{color:#61b5eb}
.analysis-disclaimer{margin:0 20px 13px;padding-left:10px;border-left:2px solid rgba(87,170,231,.45);color:#8aa9c8;font-size:8.5px;line-height:1.55}
.analysis-card>.btn{width:calc(100% - 40px);margin:0 20px 20px}
.content-hub-copy h2{margin:14px 0 14px;font-size:clamp(30px,3vw,43px);line-height:1.15;letter-spacing:-.04em}
.content-hub-copy p{margin:0;color:#708094;font-size:14px;line-height:1.75}
.content-hub-copy ul{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px;color:#38516d;font-size:13px}
.content-hub-copy li{display:flex;align-items:center;gap:9px}
.content-hub-copy li svg{color:#09a77a}

/* CATÁLOGO */
.catalog-section{padding-top:78px}
.section-heading{margin-bottom:40px}
.section-heading.centered{text-align:center}
.section-heading.narrow{max-width:820px;margin-left:auto;margin-right:auto}
.eyebrow{display:inline-flex;padding:4px 10px;border:1px solid #d8e7f5;border-radius:7px;color:#286094;background:#eef5fb;font-size:10px;font-weight:600}
.section-heading h2{margin:12px 0 9px;font-size:clamp(30px,3.1vw,45px);line-height:1.16;letter-spacing:-.04em}
.section-heading p{max-width:760px;margin:0 auto;color:#718095;font-size:14px;line-height:1.65}
.catalog-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.product-card{min-height:250px;padding:16px;display:flex;flex-direction:column;color:#1f3b59;background:#fff;border:1px solid #e1e8ef;border-top:3px solid #397bd1;border-radius:12px;box-shadow:var(--shadow-soft)}
.product-meta{display:flex;align-items:center;justify-content:space-between;gap:8px}
.product-meta span{overflow:hidden;padding:3px 7px;border-radius:999px;color:#2c619b;background:#eaf1fb;font-size:7.5px;font-weight:800;text-overflow:ellipsis;white-space:nowrap}
.product-meta strong{color:#063f91;font-size:11px;white-space:nowrap}
.product-card h3{margin:9px 0 7px;font-size:13px;line-height:1.35}
.product-card p{margin:0 0 9px;color:#687b8f;font-size:9px;line-height:1.6}
.product-card ul{list-style:none;padding:0;margin:0 0 12px;display:grid;gap:4px}
.product-card li{position:relative;padding-left:15px;color:#5e7389;font-size:8.5px;line-height:1.45}
.product-card li::before{content:"✓";position:absolute;left:0;color:#3b83c8}
.product-card .btn{margin-top:auto}
.catalog-note{
    margin:18px 0 14px;
    padding:10px 14px;
    color:#6f8194;
    background:#f6f9fc;
    border:1px solid #e5ebf1;
    border-radius:9px;
    text-align:center;
    font-size:11px;
}
.catalog-note strong{color:#0757c9}
.catalog-link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#0757c9;
    font-size:12px;
    font-weight:700;
}

/* INDICADORES */
.metrics-strip{padding:34px 0;color:#fff;background:linear-gradient(90deg,#06499f,#063f91 55%,#0b4da3)}
.metrics-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.metrics-grid div{text-align:center;padding:0 20px;border-right:1px solid rgba(255,255,255,.16)}
.metrics-grid div:last-child{border-right:0}
.metrics-grid strong{display:block;margin-bottom:6px;font-size:29px;line-height:1}
.metrics-grid span{display:block;color:#b9cfe6;font-size:12px}

/* MISSÃO */
.pillar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.pillar-card{min-height:280px;padding:27px 24px;background:#fff;border:1px solid #e4e9ef;border-radius:15px;box-shadow:0 9px 27px rgba(8,42,80,.025)}
.soft-icon{width:43px;height:43px;border-radius:10px;background:#eff6fc;color:#0b55a3;display:grid;place-items:center}
.pillar-card h3{margin:21px 0 10px;font-size:18px;line-height:1.3;letter-spacing:-.02em}
.pillar-card p{margin:0;color:#748194;font-size:13px;line-height:1.65}

/* COMO FUNCIONA */
.how-section{border-top:1px solid #f0f3f6}
.journey-grid{position:relative;margin-top:54px;display:grid;grid-template-columns:repeat(4,1fr)}
.journey-grid::before{content:"";position:absolute;top:27px;left:9%;right:9%;height:1px;background:#d7e2ed}
.journey-step{position:relative;padding:0 22px;text-align:center}
.journey-icon{position:relative;z-index:2;width:55px;height:55px;margin:0 auto 15px;border-radius:50%;display:grid;place-items:center;color:#fff;background:#074b9d;box-shadow:0 9px 20px rgba(5,74,157,.24)}
.journey-step small{display:block;margin-bottom:7px;color:#9aa9bb;font-size:9px;font-weight:700;letter-spacing:.16em}
.journey-step h3{margin:0 0 9px;font-size:17px}
.journey-step p{margin:0;color:#788698;font-size:12px;line-height:1.65}
.journey-cta{margin-top:44px;text-align:center}
.journey-cta p{margin:10px 0 0;color:#a0abb7;font-size:10px}

/* SITUAÇÕES PRÁTICAS */
.practical-section{padding-top:74px}
.practical-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.practical-grid article{padding:25px;background:#fff;border:1px solid #e4eaf0;border-radius:15px;box-shadow:var(--shadow-soft)}
.practical-grid article>span{width:44px;height:44px;border-radius:10px;background:#edf5fb;color:#0a559f;display:grid;place-items:center}
.practical-grid h3{margin:16px 0 6px;font-size:17px}
.practical-grid p{margin:0;color:#788698;font-size:12px}

/* FAQ */
.faq-section{padding-top:88px;padding-bottom:70px}
.faq-list{max-width:880px;margin:0 auto;display:grid;gap:12px}
.faq-item{overflow:hidden;background:#fff;border:1px solid #e6ebf0;border-radius:12px}
.faq-item button{width:100%;min-height:68px;padding:16px 22px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:#183a5f;background:#fff;border:0;text-align:left;font-size:14px;font-weight:600}
.faq-item button svg{transition:transform .25s}
.faq-item.open button svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .32s ease}
.faq-answer p{margin:0;padding:0 22px 20px;color:#6f8093;font-size:12px;line-height:1.7}

/* CONFORMIDADE */
.compliance-section{padding:50px 0;background:#f0f5f8}
.compliance-grid{display:grid;grid-template-columns:230px 1fr;gap:34px;align-items:center}
.compliance-title{display:flex;align-items:center;gap:13px}
.compliance-title strong{display:block;font-size:14px}
.compliance-title small{display:block;color:#9aabb9;font-size:10px}
.compliance-pills{display:flex;flex-wrap:wrap;gap:10px}
.compliance-pills span{padding:7px 10px;display:flex;align-items:center;gap:7px;color:#7b8794;background:#fff;border:1px solid #e3e9ee;border-radius:7px;box-shadow:0 4px 12px rgba(10,41,76,.025);font-size:10px}
.compliance-pills svg{color:#2e77bc}

/* CTA */
.knowledge-cta{padding:78px 0;text-align:center;color:#fff;background:linear-gradient(100deg,#0a4b9f,#063f91 58%,#104ea2)}
.knowledge-inner{max-width:900px}
.knowledge-cta h2{margin:0 0 14px;font-size:clamp(31px,3.2vw,47px);line-height:1.12;letter-spacing:-.04em}
.knowledge-cta>div>p{max-width:760px;margin:0 auto;color:#c4d4e6;font-size:14px}
.cta-buttons{margin:30px 0 20px;display:flex;justify-content:center;gap:12px}
.knowledge-cta .cta-disclaimer{max-width:630px;color:#86a6ca;font-size:10px}

/* RODAPÉ */
.site-footer{padding:58px 0 24px;color:#fff;background:#062e5a}
.footer-grid{padding-bottom:42px;display:grid;grid-template-columns:1.7fr .7fr .7fr;gap:80px}
.footer-logo{width:auto;height:100px;margin-bottom:20px}
.footer-about p{max-width:430px;margin:0 0 18px;color:#a9c0d7;font-size:13px}
.footer-legal-note{padding-left:14px;color:#91abc3;border-left:2px solid rgba(73,147,211,.25);font-size:10px;line-height:1.8}
.footer-column h3{margin:3px 0 16px;font-size:13px}
.footer-column a{display:block;margin:8px 0;color:#9fb6cc;font-size:12px;transition:.2s}
.footer-column a:hover{color:#fff;transform:translateX(2px)}
.footer-bottom{padding-top:22px;display:flex;justify-content:space-between;gap:30px;color:#8fa8c0;border-top:1px solid rgba(255,255,255,.09);font-size:9px}

/* RESPONSIVO */
@media (max-width:1180px){
    .site-header .container{width:min(100% - 40px,1120px)}
    .brand{width:190px;flex-basis:190px}
    .brand img{height:62px}
    .main-nav{gap:22px}
    .problem-side{width:calc(100% - 440px)}
    .manual-card{right:0;width:410px}
    .problem-layout{grid-template-columns:minmax(0,1fr) 410px;gap:34px}
    .problem-side-link{margin-right:0;transform:none}
}

@media (max-width:1020px){
    .site-header{height:76px}
    .site-header .container{width:min(100% - 32px,960px)}
    .header-inner{gap:16px}
    .brand{width:160px;flex:1}
    .brand img{height:56px}
    .mobile-menu-button{display:block;order:3}
    .header-actions{order:2}
    .header-login{display:none}
    .btn-header{min-width:0;min-height:38px;padding:9px 13px;font-size:11px}
    .main-nav{
        position:fixed;
        z-index:1100;
        top:76px;
        bottom:0;
        left:-330px;
        width:min(320px,86vw);
        padding:20px;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:0;
        background:#fff;
        box-shadow:20px 0 40px rgba(0,35,73,.14);
        transition:left .28s ease;
    }
    .main-nav a{padding:14px 8px;border-bottom:1px solid #edf1f4;font-size:14px}
    .main-nav a::after{display:none}
    body.menu-open .main-nav{left:0}
    .nav-backdrop{position:fixed;z-index:1050;inset:76px 0 0;background:rgba(0,25,55,.45);backdrop-filter:blur(2px)}
    body.menu-open .nav-backdrop{display:block}

    .hero-dark{min-height:auto;padding:28px 0 40px;overflow:hidden}
    .hero-grid{min-height:0;padding-top:0;display:grid;grid-template-columns:1fr;gap:28px}
    .problem-side{width:100%;max-width:760px;margin-inline:auto}
    .manual-card{position:relative;top:auto;right:auto;width:100%;max-width:720px;height:auto;min-height:0;margin-inline:auto}
    .problem-selection{min-height:0;padding:38px 0 48px}
    .problem-layout{grid-template-columns:1fr;gap:34px}
    .problem-selector{max-width:760px;margin-inline:auto;width:100%;transform:none}
    .problem-side-link{max-width:720px;width:100%;margin-inline:auto;padding:0}
    .catalog-quick-link{max-width:500px;margin-inline:auto}
    .content-hub-grid{grid-template-columns:1fr;gap:42px}
    .content-hub-copy{max-width:760px}
    .catalog-grid{grid-template-columns:repeat(2,1fr)}
    .pillar-grid{grid-template-columns:repeat(2,1fr)}
    .journey-grid{grid-template-columns:repeat(2,1fr);gap:36px 0}
    .journey-grid::before{display:none}
    .metrics-grid{grid-template-columns:repeat(2,1fr);gap:25px 0}
    .metrics-grid div:nth-child(2){border-right:0}
    .compliance-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1.4fr .7fr .7fr;gap:36px}
}

@media (max-width:700px){
    .container{width:min(100% - 28px,var(--container))}
    .site-header{height:64px}
    .site-header .container{width:calc(100% - 28px)}
    .brand img{height:44px}
    .main-nav{top:64px}
    .nav-backdrop{inset:64px 0 0}
    .btn-header{display:none}

    .hero-dark{padding:24px 0 34px}
    .problem-heading-line{display:block}
    .problem-heading-line h1{font-size:31px}
    .subtle-link{margin:10px 0 0}
    .hero-intro{font-size:12px}
    .hero-info-card{grid-template-columns:46px minmax(0,1fr);gap:13px;padding:15px}
    .hero-info-card-blue,.hero-info-card-green{min-height:0}
    .hero-info-icon{width:44px;height:44px}
    .hero-info-icon svg{width:22px;height:22px}
    .hero-info-card p{font-size:11px;line-height:1.65}

    .manual-card{padding:18px 16px;border-radius:14px}
    .manual-card h2{font-size:22px}
    .manual-checks{grid-template-columns:1fr}
    .manual-course-banner{grid-template-columns:43px 1fr auto}
    .manual-course-icon{width:43px;height:41px}

    .problem-selection{padding-top:30px}
    .problem-selector-title{grid-template-columns:34px auto 34px;gap:10px}
    .problem-selector-title h2{font-size:14px;white-space:normal}
    .problem-grid{grid-template-columns:1fr}
    .problem-card{min-height:58px}
    .all-problems-link{font-size:11px}

    .section-white,.section-soft{padding:62px 0}
    .section-heading{margin-bottom:30px}
    .section-heading h2{font-size:31px}
    .section-heading p{font-size:13px}
    .evaluation-grid{grid-template-columns:1fr}
    .catalog-grid{grid-template-columns:1fr}
    .product-card{min-height:auto}
    .metrics-strip{padding:28px 0}
    .metrics-grid{grid-template-columns:1fr 1fr}
    .metrics-grid strong{font-size:24px}
    .metrics-grid span{font-size:10px}
    .metrics-grid div{padding:0 10px}
    .pillar-grid{grid-template-columns:1fr}
    .pillar-card{min-height:auto}
    .journey-grid{grid-template-columns:1fr;gap:32px}
    .journey-step{padding:0 14px}
    .practical-grid{grid-template-columns:1fr}
    .faq-item button{min-height:62px;padding:14px 16px;font-size:13px}
    .faq-answer p{padding:0 16px 16px}
    .compliance-pills{display:grid;grid-template-columns:1fr}
    .compliance-pills span{font-size:9px}
    .knowledge-cta{padding:62px 0}
    .cta-buttons{flex-direction:column;align-items:stretch}
    .cta-buttons .btn{width:100%}
    .footer-grid{grid-template-columns:1fr;gap:28px}
    .footer-bottom{flex-direction:column;gap:10px}
}

@media (max-width:420px){
    .hero-info-card{grid-template-columns:40px minmax(0,1fr);gap:11px;padding:13px}
    .hero-info-icon{width:40px;height:40px}
    .hero-info-icon svg{width:20px;height:20px}
    .manual-topline{font-size:9px}
    .free-badge{font-size:9px}
    .manual-card h2{font-size:20px}
    .manual-card>p{font-size:11px}
    .problem-card{grid-template-columns:38px minmax(0,1fr) 16px;padding-inline:10px}
    .problem-icon{width:38px;height:38px}
}

@media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{animation:none!important;transition:none!important}
}