@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Source+Serif+4:wght@400;600&display=swap');

:root {
  --az: #1B3A4B;
  --az2: #264d63;
  --ow: #FAFAF7;
  --co: #A0522D;
  --co2: #b8693f;
  --gr: #3C3C3C;
  --ci: #E8E8E4;
  --cm: #C5C5C0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ow); color: var(--gr); -webkit-font-smoothing: antialiased; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(27,58,75,.95); backdrop-filter: blur(10px); box-shadow: 0 1px 10px rgba(0,0,0,.07); }
.nav-i { max-width: 1080px; margin: auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; }
.nlogo { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--ow); text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nlogo span { color: var(--co); }
.nlogo-img { height: 36px; width: auto; display: block; }
.nlogo.text-hidden { font-size: 0; letter-spacing: 0; }
.nlogo.text-hidden .nlogo-img { height: 40px; }
.nav-r { display: none; gap: 4px; align-items: center; }
.nav-a { color: rgba(250,250,247,.78); text-decoration: none; font-size: 12px; font-weight: 500; padding: 6px 9px; transition: color .2s; }
.nav-a:hover { color: var(--ow); }
.ncta { background: var(--co); color: var(--ow); padding: 7px 14px; border-radius: 3px; font-weight: 600; font-size: 11.5px; text-decoration: none; transition: background .2s; margin-left: 2px; }
.ncta:hover { background: var(--co2); }
.dd { position: relative; }
.dd-btn { color: rgba(250,250,247,.55); font-size: 12px; font-weight: 500; padding: 6px 9px; cursor: pointer; background: none; border: none; font-family: inherit; transition: color .2s; }
.dd-btn:hover { color: var(--ow); }
.ddm { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: rgba(27,58,75,.97); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.05); border-radius: 4px; min-width: 210px; padding: 5px 0; box-shadow: 0 8px 24px rgba(0,0,0,.16); z-index: 50; }
.dd:hover .ddm { display: block; }
.ddm a { display: block; padding: 7px 15px; color: rgba(250,250,247,.72); text-decoration: none; font-size: 12px; transition: color .15s; }
.ddm a:hover { color: var(--ow); }
@media(min-width:961px) { .nav-r { display: flex !important; } .nav-ham { display: none !important; } }
.nav-ham { display: none; background: none; border: none; cursor: pointer; z-index: 300; }
.nav-ham span { display: block; width: 17px; height: 1.5px; background: var(--ow); margin: 4px 0; }
@media(max-width:960px) {
  .nav-ham { display: block; }
}

/* SHARED */
.tag { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--co); margin-bottom: 12px; display: block; }
.sh { font-family: 'Source Serif 4', serif; font-size: clamp(18px, 2.3vw, 26px); font-weight: 600; line-height: 1.22; margin-bottom: 10px; color: var(--az); }
.btn { display: inline-flex; align-items: center; gap: 6px; background: var(--co); color: var(--ow); padding: 12px 24px; border-radius: 3px; text-decoration: none; font-weight: 600; font-size: 13px; transition: background .2s; }
.btn:hover { background: var(--co2); }
.btn-ghost { background: transparent; border: 1px solid rgba(250,250,247,.15); color: var(--ow); }
.btn-ghost:hover { background: rgba(250,250,247,.04); }
.sec { padding: 64px 24px; max-width: 1080px; margin: auto; }
.sep { height: 1px; background: linear-gradient(90deg, transparent, var(--cm), transparent); max-width: 1080px; margin: 0 auto; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.two-t { font-size: 14px; line-height: 1.8; color: rgba(60,60,60,.82); margin-bottom: 10px; }
.two-t strong { color: var(--az); font-weight: 600; }

/* HERO (reusable) */
.hero { min-height: 78vh; background: var(--az); display: flex; align-items: center; position: relative; }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 100px; background: linear-gradient(to top, var(--ow), transparent); pointer-events: none; z-index: 1; }
.hi { max-width: 1080px; margin: auto; padding: 140px 24px 100px; position: relative; z-index: 2; }
.hero h1 { font-family: 'Source Serif 4', serif; font-size: clamp(24px, 4vw, 44px); font-weight: 600; color: var(--ow); line-height: 1.1; max-width: 700px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--co); }
.hero-p { font-size: 16px; color: rgba(250,250,247,.78); max-width: 520px; line-height: 1.75; margin-bottom: 32px; }
.hero-100 { min-height: 100vh; }
.hero-50 { min-height: 50vh; }

/* CARDS */
.card { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 22px 18px; transition: border-color .3s, box-shadow .3s; }
.card:hover { border-color: var(--co); }
.card-accent { border-left: 3px solid var(--co); }
.card h4 { font-size: 13px; font-weight: 600; color: var(--az); margin-bottom: 4px; }
.card p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }
.card-num { font-family: 'Source Serif 4', serif; font-size: 28px; font-weight: 600; color: var(--ci); margin-bottom: 8px; transition: color .3s; }
.card:hover .card-num { color: var(--co); }

/* GRIDS */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }

/* IMPACT */
.ic { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 20px 16px; text-align: center; transition: border-color .3s; }
.ic:hover { border-color: var(--co); }
.ic-mark { font-size: 18px; margin-bottom: 6px; display: block; color: var(--co); font-weight: 700; }
.ic h4 { font-size: 12px; font-weight: 600; color: var(--az); margin-bottom: 3px; }
.ic p { font-size: 13px; color: rgba(60,60,60,.75); line-height: 1.5; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.stp { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 24px 20px; }
.stp-n { font-family: 'Source Serif 4', serif; font-size: 32px; font-weight: 600; color: var(--ci); margin-bottom: 8px; transition: color .3s; }
.stp:hover .stp-n { color: var(--co); }
.stp h4 { font-size: 13px; font-weight: 600; color: var(--az); margin-bottom: 4px; }
.stp p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }

/* CALLOUT */
.callout { background: var(--az); border-radius: 5px; padding: 28px 24px; margin: 24px 0; }
.callout h3 { font-family: 'Source Serif 4', serif; font-size: 17px; font-weight: 600; color: var(--ow); margin-bottom: 6px; }
.callout p { font-size: 14px; color: rgba(250,250,247,.78); line-height: 1.75; }
.callout strong { color: var(--co); }

/* TIMELINE */
.tl { position: relative; padding-left: 26px; margin: 24px 0; }
.tl::before { content: ''; position: absolute; left: 5px; top: 0; bottom: 0; width: 2px; background: var(--ci); }
.tl-item { position: relative; margin-bottom: 22px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -23px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--co); }
.tl-item h4 { font-size: 13px; font-weight: 600; color: var(--az); margin-bottom: 3px; }
.tl-item p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.65; }

/* PROB */
.prob { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.prob-item { padding-left: 14px; border-left: 2px solid var(--ci); margin-bottom: 16px; transition: border-color .3s; }
.prob-item:hover { border-color: var(--co); }
.prob-item h4 { font-size: 12.5px; font-weight: 600; color: var(--az); margin-bottom: 2px; }
.prob-item p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }

/* AREA CARDS */
.acard { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 24px 20px; transition: border-color .3s, box-shadow .3s, transform .3s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.acard:hover { border-color: var(--co); box-shadow: 0 3px 14px rgba(27,58,75,.04); transform: translateY(-2px); }
.acard-line { width: 22px; height: 2px; background: var(--ci); margin-bottom: 12px; transition: background .3s, width .3s; }
.acard:hover .acard-line { background: var(--co); width: 34px; }
.acard h3 { font-size: 13.5px; font-weight: 600; color: var(--az); margin-bottom: 5px; }
.acard-sub { font-weight: 400; color: rgba(60,60,60,.55); font-size: 11.5px; }
.acard p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }

/* HOW */
.hgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hnum { font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 600; color: var(--ci); margin-bottom: 8px; transition: color .3s; }
.hstep:hover .hnum { color: var(--co); }
.hstep h4 { font-size: 12.5px; font-weight: 600; color: var(--az); margin-bottom: 3px; }
.hstep p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }

/* ABOUT */
.abg { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.abimg { width: 100%; aspect-ratio: 4/5; background: var(--az); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.abimg span { font-size: 10px; color: rgba(250,250,247,.15); letter-spacing: 1px; }

/* ADV CARD */
.adv { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; background: white; border: 1px solid var(--ci); border-radius: 5px; padding: 32px 28px; }
.adv-img { width: 100%; aspect-ratio: 1; background: var(--az); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.adv-img span { font-size: 9px; color: rgba(250,250,247,.18); letter-spacing: 1px; }
.adv-name { font-family: 'Source Serif 4', serif; font-size: 20px; font-weight: 600; color: var(--az); margin-bottom: 4px; }
.adv-role { font-size: 11px; color: var(--co); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.adv p { font-size: 14px; color: rgba(60,60,60,.82); line-height: 1.7; margin-bottom: 8px; }
.adv-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.adv-badge { font-size: 10px; font-weight: 500; padding: 3px 8px; border: 1px solid var(--ci); border-radius: 3px; color: rgba(60,60,60,.5); }

/* CTA BAR */
.ctab { background: var(--az); border-radius: 5px; padding: 40px 30px; display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.ctab h3 { font-family: 'Source Serif 4', serif; font-size: 18px; font-weight: 600; color: var(--ow); line-height: 1.3; margin-bottom: 6px; }
.ctab p { font-size: 14px; color: rgba(250,250,247,.72); line-height: 1.7; max-width: 460px; }

/* FINAL CTA */
.final-cta { background: var(--az); border-radius: 5px; padding: 44px 32px; text-align: center; margin: 40px 0; }
.final-cta h3 { font-family: 'Source Serif 4', serif; font-size: 19px; font-weight: 600; color: var(--ow); margin-bottom: 8px; }
.final-cta p { font-size: 14px; color: rgba(250,250,247,.75); line-height: 1.7; max-width: 460px; margin: 0 auto 22px; }

/* FAQ */
.fq { border-bottom: 1px solid var(--ci); padding: 14px 0; cursor: pointer; }
.fq-q { display: flex; justify-content: space-between; align-items: center; }
.fq-q h4 { font-size: 13px; font-weight: 600; color: var(--az); line-height: 1.4; flex: 1; padding-right: 14px; }
.fq-i { color: var(--co); font-size: 18px; font-weight: 300; transition: transform .3s; }
.fq-i.open { transform: rotate(45deg); }
.fq-a { font-size: 14px; color: rgba(60,60,60,.82); line-height: 1.75; padding-top: 8px; max-width: 600px; }

/* SOBRE */
.s-hero { min-height: 46vh; background: var(--az); display: flex; align-items: flex-end; }
.s-hero-inner { max-width: 1080px; margin: auto; padding: 120px 24px 44px; width: 100%; }
.s-hero h1 { font-family: 'Source Serif 4', serif; font-size: clamp(24px, 3.6vw, 40px); font-weight: 600; color: var(--ow); margin-bottom: 8px; }
.s-hero p { font-size: 15px; color: rgba(250,250,247,.72); max-width: 460px; line-height: 1.7; }
.s-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.s-photo { width: 100%; aspect-ratio: 3/4; background: var(--az); border-radius: 4px; display: flex; align-items: center; justify-content: center; position: sticky; top: 80px; }
.s-photo span { font-size: 9px; color: rgba(250,250,247,.15); letter-spacing: 1px; }
.fcard { background: white; border: 1px solid var(--ci); border-radius: 5px; padding: 22px 20px; margin-bottom: 12px; }
.fcard h4 { font-size: 14px; font-weight: 700; color: var(--az); margin-bottom: 11px; }
.fcard-method { border-color: var(--co); }
.fr { display: flex; gap: 9px; align-items: baseline; margin-bottom: 8px; }
.fr:last-child { margin-bottom: 0; }
.fdot { width: 5px; height: 5px; border-radius: 50%; background: var(--co); flex-shrink: 0; margin-top: 5px; }
.fr p { font-size: 13.5px; line-height: 1.55; color: rgba(60,60,60,.82); }
.srow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 22px; }
.scard { background: var(--az); border-radius: 5px; padding: 20px 18px; }
.scard-big { font-family: 'Source Serif 4', serif; font-size: 24px; font-weight: 600; color: var(--ow); margin-bottom: 2px; }
.scard-label { font-size: 11px; color: rgba(250,250,247,.60); line-height: 1.4; }
.badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.badge { font-size: 10.5px; font-weight: 500; padding: 4px 9px; border: 1px solid var(--cm); border-radius: 3px; color: var(--gr); background: white; }
.txt { font-size: 14px; line-height: 1.75; color: rgba(60,60,60,.82); margin-bottom: 10px; }

/* VS cards (bem de familia) */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.vs-card { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 24px 20px; }
.vs-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.vs-icon { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.vs-yes .vs-icon { background: rgba(27,58,75,.1); color: var(--az); }
.vs-no .vs-icon { background: rgba(160,82,45,.1); color: var(--co); }
.vs-item { display: flex; gap: 9px; align-items: baseline; margin-bottom: 8px; }
.vs-item:last-child { margin-bottom: 0; }
.vs-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.vs-yes .vs-dot { background: var(--az); }
.vs-no .vs-dot { background: var(--co); }
.vs-item p { font-size: 13.5px; color: rgba(60,60,60,.80); line-height: 1.55; }

/* HIP cards (idpj) */
.hip { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.hip-card { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 22px 20px; }
.hip-card h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--az); }
.hip-icon { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.hip-ataque .hip-icon { background: rgba(160,82,45,.1); color: var(--co); }
.hip-defesa .hip-icon { background: rgba(27,58,75,.1); color: var(--az); }
.hip-item { display: flex; gap: 9px; align-items: baseline; margin-bottom: 8px; }
.hip-item:last-child { margin-bottom: 0; }
.hip-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.hip-ataque .hip-dot { background: var(--co); }
.hip-defesa .hip-dot { background: var(--az); }
.hip-item p { font-size: 13.5px; color: rgba(60,60,60,.80); line-height: 1.55; }

/* BLOG */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bcard { background: white; border: 1px solid var(--ci); border-radius: 4px; overflow: hidden; transition: box-shadow .3s, transform .3s; cursor: pointer; }
.bcard:hover { box-shadow: 0 3px 16px rgba(27,58,75,.05); transform: translateY(-2px); }
.bcard-top { height: 130px; background: var(--az); display: flex; align-items: center; justify-content: center; }
.bcard-top span { font-size: 9.5px; color: rgba(250,250,247,.18); letter-spacing: 1px; text-transform: uppercase; }
.bcard-body { padding: 20px 16px; }
.bcard-tag { font-size: 9.5px; font-weight: 600; color: var(--co); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.bcard h3 { font-size: 13.5px; font-weight: 600; color: var(--az); line-height: 1.4; margin-bottom: 5px; }
.bcard p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.6; }

/* FOOTER */
.ft { background: var(--az); padding: 36px 24px 16px; }
.ft-i { max-width: 1080px; margin: auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ft h4 { font-size: 10px; font-weight: 600; color: var(--ow); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.ft-logo { height: 32px; width: auto; margin-bottom: 12px; display: block; opacity: .6; }
.ft p, .ft a { font-size: 12px; color: rgba(250,250,247,.62); line-height: 1.7; text-decoration: none; display: block; }
.ft a:hover { color: var(--ow); }
.ft-b { max-width: 1080px; margin: auto; padding-top: 12px; margin-top: 12px; border-top: 1px solid rgba(250,250,247,.04); text-align: center; }
.ft-b p { font-size: 10px; color: rgba(250,250,247,.40); }

/* WA FLOAT */
.waf { position: fixed; bottom: 18px; right: 18px; z-index: 90; background: var(--co); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 12px rgba(160,82,45,.22); transition: transform .2s, background .2s; text-decoration: none; }
.waf:hover { transform: scale(1.06); background: var(--co2); }
.waf svg { width: 20px; height: 20px; fill: var(--ow); }

/* ONDE */
.onde-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.onde-box { background: var(--az); border-radius: 4px; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.onde-box span { color: rgba(250,250,247,.2); font-size: 11px; letter-spacing: 1px; }

/* FRENTES (passivo bancario) */
.frente { background: white; border: 1px solid var(--ci); border-radius: 4px; padding: 24px 20px; border-left: 3px solid var(--co); transition: box-shadow .3s; }
.frente:hover { box-shadow: 0 3px 14px rgba(27,58,75,.04); }
.frente h4 { font-size: 13.5px; font-weight: 600; color: var(--az); margin-bottom: 6px; }
.frente p { font-size: 13px; color: rgba(60,60,60,.78); line-height: 1.65; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media(max-width:860px) {
  .prob, .abg, .s-layout, .two, .onde-grid { grid-template-columns: 1fr; }
  .g2, .g3, .vs, .hip { grid-template-columns: 1fr; }
  .g4, .hgrid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .srow { grid-template-columns: 1fr; }
  .s-photo { position: static; max-width: 220px; }
  .ctab, .adv { flex-direction: column; text-align: center; }
  .adv { grid-template-columns: 1fr; text-align: center; }
  .bgrid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-100 { min-height: 80vh; }
  .hi { padding: 110px 20px 60px; }
  .sec { padding: 48px 18px; }
  .hero-p { font-size: 14px; }
  .adv-img { max-width: 160px; margin: 0 auto; }
  .adv-badges { justify-content: center; }
  .ctab { padding: 28px 20px; text-align: center; }
  .final-cta { padding: 32px 20px; }
  .s-hero-inner { padding: 100px 20px 32px; }
  .fcard { padding: 18px 16px; }
}

@media(max-width:480px) {
  .g4, .hgrid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 22px; }
  .sh { font-size: 17px; }
  .hi { padding: 100px 16px 50px; }
  .sec { padding: 40px 14px; }
  .hero-p { font-size: 13.5px; max-width: 100%; }
  .btn { padding: 11px 18px; font-size: 12.5px; width: 100%; justify-content: center; }
  .nav-i { padding: 11px 16px; }
  .nlogo-img { height: 28px; }
  .tag { font-size: 9px; letter-spacing: 2px; }
  .prob-item { margin-bottom: 14px; }
  .acard { padding: 18px 16px; }
  .callout { padding: 22px 18px; }
  .callout h3 { font-size: 15px; }
  .final-cta h3 { font-size: 17px; }
  .ctab h3 { font-size: 16px; }
  .vs { gap: 12px; }
  .hip { gap: 10px; }
  .tl { padding-left: 22px; }
  .srow { gap: 8px; }
  .scard { padding: 16px 14px; }
  .scard-big { font-size: 20px; }
  .adv { padding: 22px 18px; gap: 20px; }
  .adv-name { font-size: 18px; }
  .fq-q h4 { font-size: 12.5px; }
  .ft-i { flex-direction: column; gap: 20px; }
  .waf { width: 42px; height: 42px; bottom: 14px; right: 14px; }
}

/* Vanilla fade-in (replaces React FadeIn) */
.fi { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fq-a { display: none; }

/* Touch and mobile polish */
html { -webkit-text-size-adjust: 100%; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.fq { -webkit-tap-highlight-color: transparent; padding: 16px 0; }
.fq-q h4 { -webkit-user-select: none; user-select: none; }
.acard { -webkit-tap-highlight-color: transparent; }
.nav-ham { padding: 8px; -webkit-tap-highlight-color: transparent; }
.btn { min-height: 44px; touch-action: manipulation; }
.ncta { min-height: 36px; display: inline-flex; align-items: center; }
.ddm a { min-height: 40px; display: flex; align-items: center; }

/* NÚMEROS / STATS */
.nums-sec { background: var(--az); padding: 44px 24px; border-top: 1px solid rgba(250,250,247,.06); }
.nums-grid { max-width: 1080px; margin: 0 auto; display: table; width: 100%; table-layout: fixed; border-collapse: collapse; }
.nums-item { display: table-cell; width: 25%; text-align: center; border-right: 1px solid rgba(250,250,247,.08); padding: 16px 24px; vertical-align: top; }
.nums-last { border-right: none; }
.nums-big { font-family: 'Source Serif 4', serif; font-size: 44px; font-weight: 600; color: #FAFAF7; line-height: 1; margin-bottom: 8px; }
.nums-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--co); }
.nums-sub { font-size: 12px; color: rgba(250,250,247,.58); margin-top: 4px; line-height: 1.5; }
@media(max-width:700px) {
  .nums-grid { display: block; }
  .nums-item { display: inline-block; width: 49%; vertical-align: top; border-right: none; border-bottom: 1px solid rgba(250,250,247,.08); padding: 20px 8px; -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center; }
  .nums-item:nth-child(1), .nums-item:nth-child(3) { border-right: 1px solid rgba(250,250,247,.08); }
  .nums-last { border-bottom: none; }
  .nums-item:nth-child(3) { border-bottom: none; }
  .nums-big { font-size: 36px; }
}


/* ── MENU MOBILE OVERLAY (fora da nav, position:fixed próprio) ── */
#mnav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #1B3A4B;
  z-index: 9999;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mnav.open { display: -webkit-flex; display: flex; }
#mnav-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: none;
  color: #FAFAF7; font-size: 28px;
  cursor: pointer; line-height: 1;
  padding: 8px; z-index: 10000;
}
#mnav a {
  display: block;
  font-size: 20px;
  color: #FAFAF7;
  text-decoration: none;
  padding: 14px 40px;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(250,250,247,.07);
}
#mnav a:first-of-type { border-top: 1px solid rgba(250,250,247,.07); }
#mnav a.mnav-cta {
  margin-top: 20px;
  background: #A0522D;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  width: calc(100% - 48px);
  padding: 16px 24px;
}
#mnav .mnav-sub {
  font-size: 13px;
  color: rgba(250,250,247,.42);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 28px 0 8px;
  border-bottom: none;
}

/* HERO HOME */
.hero-home {
  background:
    linear-gradient(rgba(27,58,75,0.82), rgba(27,58,75,0.82)),
    url('../img/asf-hero.png') center top / cover no-repeat;
}
@media(max-width:860px) {
  .hero-home {
    background:
      linear-gradient(rgba(27,58,75,0.88), rgba(27,58,75,0.88)),
      url('../img/asf-hero.png') center top / cover no-repeat;
  }
}

/* ÍCONES — strip de diferenciais */
.istrip { background: white; border-top: 1px solid var(--ci); border-bottom: 1px solid var(--ci); }
.irow { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.icard { text-align: center; padding: 36px 20px; border-right: 1px solid var(--ci); }
.icard:last-child { border-right: none; }
.iicon { width: 56px; height: 56px; border-radius: 50%; background: var(--co); display: flex; align-items: center; justify-content: center; margin: 0 auto 13px; flex-shrink: 0; }
.iicon svg { width: 24px; height: 24px; display: block; }
.iicon svg path, .iicon svg rect, .iicon svg circle, .iicon svg polygon { fill: #FAFAF7; }
.icard h4 { font-size: 13px; font-weight: 700; color: var(--az); margin-bottom: 4px; }
.icard p { font-size: 13px; color: rgba(60,60,60,.75); line-height: 1.55; }

/* FOOTER — bloco institucional */
.ft-i { display: grid; grid-template-columns: auto auto 1fr auto; gap: 36px; align-items: start; }
.ft-inst { text-align: center; }
.ft-razao { font-size: 13px; font-weight: 600; color: rgba(250,250,247,.88); margin: 6px 0 2px; }
.ft-oab { font-size: 11px; color: rgba(250,250,247,.55); margin-bottom: 12px; letter-spacing: .3px; }
.ft-inst a { font-size: 12px; color: rgba(250,250,247,.65); display: block; line-height: 1.9; text-decoration: none; }
.ft-inst a:hover { color: var(--ow); }
.ft-map span { color: var(--co); }
.ft-map:hover span { color: var(--co2); }

/* Responsive ícones e footer */
@media(max-width:860px) {
  .irow { grid-template-columns: 1fr 1fr; }
  .icard { border-right: none; border-bottom: 1px solid var(--ci); }
  .icard:nth-child(2n) { border-right: none; }
  .icard:last-child { border-bottom: none; }
  .ft-i { grid-template-columns: 1fr 1fr; }
  .ft-inst { grid-column: 1 / -1; }
}
@media(max-width:480px) {
  .irow { grid-template-columns: 1fr 1fr; }
  .ft-i { grid-template-columns: 1fr 1fr; }
}

/* HERO FOTO COL */
.hero-photo-col { width: 380px; flex-shrink: 0; align-self: stretch; overflow: hidden; }
@media(max-width:860px) { .hero-photo-col { display: none; } }

.footer {
  background: #1B3A4B;
  color: #fff;
  padding: 60px 20px 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-col { flex:1; min-width:250px; }
.footer-title { font-weight:600; margin-bottom:10px; }
.footer a { color:#C8A96E; text-decoration:none; }
.footer a:hover { text-decoration:underline; }
.footer-bottom { text-align:center; margin-top:30px; font-size:13px; opacity:.8; }

/* ── ARTIGOS ──────────────────────────────────────────────────────────── */
.art-container { max-width: 740px; margin: 0 auto; padding: 48px 24px 64px; }
.art-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--ci); }
.art-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--co); background: rgba(160,82,45,.08); padding: 4px 10px; border-radius: 2px; }
.art-cat-tec { color: var(--az); background: rgba(27,58,75,.08); }
.art-date { font-size: 12px; color: rgba(60,60,60,.45); }
.art-read { font-size: 12px; color: rgba(60,60,60,.45); }
.art-read::before { content: '·'; margin-right: 12px; }
.art-body { font-size: 15px; line-height: 1.85; color: rgba(60,60,60,.85); }
.art-body h2 { font-family: 'Source Serif 4', serif; font-size: clamp(18px,2.2vw,22px); font-weight: 600; color: var(--az); margin: 44px 0 14px; line-height: 1.25; }
.art-body h3 { font-size: 16px; font-weight: 700; color: var(--az); margin: 28px 0 10px; }
.art-body p { margin-bottom: 18px; }
.art-body ul, .art-body ol { margin: 0 0 18px 22px; }
.art-body li { margin-bottom: 8px; }
.art-body strong { color: rgba(60,60,60,.95); font-weight: 600; }
.art-body a { color: var(--co); font-weight: 600; text-decoration: none; }
.art-body a:hover { text-decoration: underline; }
.art-callout { background: rgba(27,58,75,.05); border-left: 3px solid var(--az); padding: 16px 20px; margin: 28px 0; border-radius: 0 4px 4px 0; }
.art-callout p { margin: 0; font-size: 14px; color: rgba(60,60,60,.80); }
.art-callout strong { color: var(--az); }
.art-callout-warn { background: rgba(160,82,45,.07); border-left-color: var(--co); }
.art-callout-warn strong { color: var(--co); }
.art-author { display: flex; align-items: center; gap: 16px; margin-top: 48px; padding: 20px 24px; background: rgba(27,58,75,.04); border-radius: 6px; }
.art-author-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.art-author-name { font-size: 13px; font-weight: 700; color: var(--az); margin-bottom: 2px; }
.art-author-role { font-size: 11.5px; color: rgba(60,60,60,.55); line-height: 1.5; }
.art-geo { display: block; margin-top: 10px; font-size: 11px; color: rgba(60,60,60,.28); font-style: italic; }
/* Cards na listagem */
.art-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto; padding: 48px 24px 64px; }
.art-card-cat { font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--co); margin-bottom: 8px; display: block; }
.art-card h3 { font-family: 'Source Serif 4', serif; font-size: 16px; font-weight: 600; color: var(--az); line-height: 1.35; margin-bottom: 10px; }
.art-card p { font-size: 12.5px; color: rgba(60,60,60,.65); line-height: 1.6; margin-bottom: 14px; }
@media(max-width:600px) {
  .art-grid { grid-template-columns: 1fr; padding: 32px 16px 48px; }
  .art-container { padding: 32px 16px 48px; }
  .art-body { font-size: 14px; }
}

/* ── ARTIGOS ─────────────────────────────────────────────────── */
.art-hero { background: var(--az); padding: 100px 24px 48px; }
.art-hero-inner { max-width: 740px; margin: 0 auto; }
.art-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.art-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--co); }
.art-sep { color: rgba(250,250,247,.2); font-size: 11px; }
.art-date { font-size: 11px; color: rgba(250,250,247,.42); }
.art-read { font-size: 11px; color: rgba(250,250,247,.42); }
.art-badge { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; }
.art-badge-tec { background: rgba(28,131,164,.25); color: #7ecfea; }
.art-badge-lei { background: rgba(160,82,45,.25); color: #e8a87c; }
.art-hero h1 { font-family: 'Source Serif 4', serif; font-size: clamp(22px,3.5vw,36px); font-weight: 600; color: var(--ow); line-height: 1.18; margin-bottom: 16px; }
.art-hero .art-resumo { font-size: 15px; color: rgba(250,250,247,.68); line-height: 1.75; max-width: 640px; }
.art-body { max-width: 740px; margin: 0 auto; padding: 52px 24px 64px; }
.art-body h2 { font-family: 'Source Serif 4', serif; font-size: clamp(18px,2.2vw,24px); font-weight: 600; color: var(--az); margin: 44px 0 14px; line-height: 1.22; }
.art-body h3 { font-size: 16px; font-weight: 700; color: var(--az); margin: 28px 0 10px; }
.art-body p { font-size: 15px; line-height: 1.85; color: rgba(60,60,60,.88); margin-bottom: 18px; }
.art-body ul, .art-body ol { padding-left: 22px; margin-bottom: 18px; }
.art-body li { font-size: 15px; line-height: 1.8; color: rgba(60,60,60,.88); margin-bottom: 6px; }
.art-body strong { color: #2c2c2c; }
.art-body a { color: var(--co); text-decoration: none; font-weight: 600; }
.art-body a:hover { text-decoration: underline; }
.art-quote { border-left: 3px solid var(--co); padding: 14px 20px; background: rgba(160,82,45,.06); border-radius: 0 4px 4px 0; margin: 24px 0; }
.art-quote p { font-size: 14px; color: rgba(60,60,60,.78); font-style: italic; margin: 0; }
.art-quote cite { display: block; font-size: 11px; color: rgba(60,60,60,.45); margin-top: 8px; font-style: normal; }
.art-info { background: #f0f4f6; border-radius: 6px; padding: 18px 22px; margin: 24px 0; border-left: 3px solid #1B3A4B; }
.art-info p { font-size: 13.5px; color: rgba(60,60,60,.82); margin: 0; }
.art-geo { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--ci); font-size: 12px; color: rgba(60,60,60,.42); font-style: italic; }
.art-card { border: 1px solid var(--ci); border-radius: 6px; padding: 22px 20px; background: #fff; text-decoration: none; display: inline-block; vertical-align: top; width: 31.33%; margin: 0 1% 24px; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 14px; transition: box-shadow .25s, transform .25s; }

/* ── ARTIGOS GRID ─── */
.art-grid { max-width: 1080px; margin: 0 auto; padding: 32px 16px 64px; }
.art-row { display: table; width: 100%; border-spacing: 16px 0; margin-bottom: 16px; }
.art-cell { display: table-cell; vertical-align: top; width: 33.33%; }
.art-card { border: 1px solid var(--ci); border-radius: 6px; padding: 20px 18px 22px; background: #fff; text-decoration: none; display: block; height: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; }
.art-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.09); }
.art-card-cat { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--co); margin-bottom: 8px; display: block; line-height: 1.4; }
.art-card h3 { font-family: 'Source Serif 4', serif; font-size: 15px; font-weight: 600; color: var(--az); line-height: 1.35; margin-bottom: 8px; }
.art-card p { font-size: 12.5px; color: rgba(60,60,60,.70); line-height: 1.65; margin: 0 0 12px; }
.art-card-foot { font-size: 11px; color: var(--co); font-weight: 600; }
@media(max-width:700px) {
  .art-row { display: block; margin-bottom: 0; }
  .art-cell { display: block; width: 100%; margin-bottom: 14px; }
  .art-card { padding: 18px 16px 20px; }
  .art-grid { padding: 24px 14px 48px; }
}
