/* ==========================================================================
   PRONTO PRO AR — Sistema de Design
   Paleta: Dourado #DCA73A  |  Navy #00163a
   Tipografia: Montserrat (display) + Inter (texto)
   Estilo: flat moderno, elegante, responsivo
   ========================================================================== */

/* ----------------------------- Tokens ----------------------------------- */
:root {
  /* Cores de marca */
  --gold:        #DCA73A;
  --gold-dark:   #c2902a;
  --gold-soft:   #f2d488;
  --gold-tint:   #fbf3df;

  --navy:        #00163a;
  --navy-700:    #052249;
  --navy-600:    #0d325f;
  --navy-500:    #16407a;

  /* Neutros */
  --bg:          #f6f8fb;
  --surface:     #ffffff;
  --ink:         #131a26;
  --muted:       #5d6878;
  --line:        #e6eaf1;

  /* Sombra / raio */
  --shadow-sm:   0 2px 8px rgba(0, 22, 58, .06);
  --shadow-md:   0 14px 38px rgba(0, 22, 58, .10);
  --shadow-lg:   0 28px 60px rgba(0, 22, 58, .16);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;

  /* Layout */
  --nav-h:       104px;
  --maxw:        1240px;

  --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, .display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--navy);
}

::selection { background: var(--gold); color: var(--navy); }

/* --------------------------- Utilidades --------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section  { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.center   { text-align: center; }
.gold     { color: var(--gold); }
.muted    { color: var(--muted); }
.hidden   { display: none !important; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center-line { justify-content: center; }

.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 14px; }
.section-head p  { color: var(--muted); font-size: 1.05rem; }

/* ----------------------------- Botões ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(220,167,58,.32); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(220,167,58,.42); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-600); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.32); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .85rem; }

/* ----------------------------- Navbar ----------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__brand img { height: 60px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .94rem;
  color: rgba(255,255,255,.82); padding: 12px 16px; border-radius: 10px;
  position: relative; transition: color .2s, background .2s;
}
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: var(--gold); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  :root { --nav-h: 88px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); padding: 12px 18px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active { background: rgba(220,167,58,.12); }
  .nav__cta .btn span.full { display: none; }
}
@media (max-width: 560px) {
  .nav__brand img { height: 46px; }
  .nav__cta .btn { padding: 10px 16px; font-size: .82rem; }
}

/* ------------------------------ Hero ------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, var(--navy-500) 0%, transparent 55%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; right: -120px; bottom: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,167,58,.22), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 92px 0 100px;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.hero h1 .gold { color: var(--gold); }
.hero p.lead { color: rgba(255,255,255,.78); font-size: 1.15rem; margin: 22px 0 34px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: 38px; margin-top: 52px; flex-wrap: wrap; }
.hero__stats .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold); }
.hero__stats .lbl { font-size: .85rem; color: rgba(255,255,255,.62); }

/* Cartão "on air" decorativo do hero */
.hero__card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.onair { display: inline-flex; align-items: center; gap: 9px; font-family:'Montserrat'; font-weight:700; font-size:.72rem; letter-spacing:.18em; color: var(--gold); }
.onair .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(220,167,58,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(220,167,58,.55)} 70%{box-shadow:0 0 0 12px rgba(220,167,58,0)} 100%{box-shadow:0 0 0 0 rgba(220,167,58,0)} }
.hero__card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.hero__card .sub { color: rgba(255,255,255,.6); font-size: .9rem; }
.equalizer { display: flex; align-items: flex-end; gap: 5px; height: 56px; margin: 24px 0; }
.equalizer span { flex: 1; background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 4px; animation: eq 1.1s ease-in-out infinite; }
.equalizer span:nth-child(odd){ animation-delay: .2s } .equalizer span:nth-child(3n){ animation-delay: .45s } .equalizer span:nth-child(4n){ animation-delay: .7s }
@keyframes eq { 0%,100%{ height: 28% } 50%{ height: 100% } }
.hero__progress { height: 6px; background: rgba(255,255,255,.14); border-radius: 999px; overflow: hidden; }
.hero__progress i { display: block; width: 42%; height: 100%; background: var(--gold); border-radius: 999px; }
.hero__time { display: flex; justify-content: space-between; font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 8px; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .hero__card { max-width: 460px; }
}

/* ------------------------- Faixa de logos ------------------------------- */
.marquee { background: var(--navy-700); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); padding: 20px 0; }
.marquee__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.marquee__row span { font-family:'Montserrat'; font-weight:700; color: rgba(255,255,255,.4); letter-spacing:.04em; font-size:1rem; }

/* ----------------------------- Cards ------------------------------------ */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid--4{ grid-template-columns: repeat(2,1fr) } .grid--3{ grid-template-columns: repeat(2,1fr) } }
@media (max-width: 640px){ .grid--2,.grid--3,.grid--4{ grid-template-columns: 1fr } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(220,167,58,.4); }

/* Card de vantagem */
.feature { padding: 34px 30px; }
.feature__icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--gold-tint); color: var(--gold-dark);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* Card de notícia */
.news__media { height: 188px; position: relative; display: grid; place-items: center; }
.news__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-family:'Montserrat'; font-weight:700; font-size:.72rem; letter-spacing:.05em;
  padding: 6px 12px; border-radius: 999px;
}
.news__body { padding: 24px 26px 28px; }
.news__date { font-size: .8rem; color: var(--muted); font-weight: 600; }
.news__body h3 { font-size: 1.15rem; margin: 10px 0 10px; }
.news__body p { color: var(--muted); font-size: .94rem; margin-bottom: 16px; }
.news__more { font-family:'Montserrat'; font-weight:700; font-size:.86rem; color: var(--gold-dark); display:inline-flex; align-items:center; gap:6px; transition: gap .2s; }
.news__more:hover { gap: 11px; }

/* Capa visual com gradientes (sem imagens externas) */
.cover { background:
  linear-gradient(135deg, var(--navy-600), var(--navy)); position: relative; overflow: hidden; }
.cover--a { background: linear-gradient(135deg, #143a78, #00163a); }
.cover--b { background: linear-gradient(135deg, #3a2c66, #161033); }
.cover--c { background: linear-gradient(135deg, #0d4d4a, #04201f); }
.cover--gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.cover__mic { color: rgba(255,255,255,.9); opacity:.92; }
.cover__mic svg { width: 56px; height: 56px; }
.cover::after { content:""; position:absolute; inset:0; background: radial-gradient(120px 80px at 80% 20%, rgba(220,167,58,.28), transparent 70%); }

/* --------------------------- Programas ---------------------------------- */
.program__media { height: 170px; display: grid; place-items: center; }
.program__body { padding: 22px 24px 26px; }
.program__cat { font-size:.76rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-dark); }
.program__body h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.program__body p { color: var(--muted); font-size:.92rem; margin-bottom: 16px; }
.program__meta { display:flex; align-items:center; gap:16px; font-size:.82rem; color: var(--muted); margin-bottom: 18px; }
.program__meta span { display:inline-flex; align-items:center; gap:6px; }
.program__meta svg { width:15px; height:15px; color: var(--gold-dark); }
.program__foot { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); padding-top: 16px; }
.price { display:flex; align-items:baseline; gap:4px; }
.price .val { font-family:'Montserrat'; font-weight:800; font-size:1.3rem; color: var(--navy); }
.price .per { font-size:.78rem; color: var(--muted); }

/* Filtros (chips) */
.chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 44px; }
.chip {
  font-family:'Montserrat'; font-weight:600; font-size:.86rem;
  padding: 9px 18px; border-radius: 999px; border:1px solid var(--line);
  background:#fff; color: var(--muted); transition:.2s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.is-active { background: var(--navy); color:#fff; border-color: var(--navy); }

/* ------------------------- Pessoas (consultores) ------------------------ */
.person { text-align:center; padding: 32px 24px 28px; }
.avatar {
  width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 18px;
  display:grid; place-items:center; font-family:'Montserrat'; font-weight:800; font-size:2rem; color:#fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 10px 24px rgba(220,167,58,.3);
}
.avatar--navy { background: linear-gradient(135deg, var(--navy-500), var(--navy)); }
.person h3 { font-size: 1.16rem; margin-bottom: 4px; }
.person .role { color: var(--gold-dark); font-weight:700; font-size:.86rem; font-family:'Montserrat'; margin-bottom: 12px; }
.person p { color: var(--muted); font-size:.92rem; margin-bottom: 16px; }
.person__social { display:flex; gap:10px; justify-content:center; }
.person__social a { width:36px; height:36px; border-radius:10px; display:grid; place-items:center; background: var(--gold-tint); color: var(--gold-dark); transition:.2s; }
.person__social a:hover { background: var(--gold); color:#fff; }
.person__social svg { width:16px; height:16px; }

/* ----------------------------- Parceiros -------------------------------- */
.partner { display:flex; align-items:center; gap:18px; padding: 24px 26px; }
.partner__logo { width:62px; height:62px; border-radius:14px; flex-shrink:0; display:grid; place-items:center; background: var(--gold-tint); color: var(--gold-dark); font-family:'Montserrat'; font-weight:800; font-size:1.2rem; }
.partner__info h3 { font-size: 1.05rem; }
.partner__info span { font-size:.85rem; color: var(--muted); }
.tag-uf { display:inline-block; margin-top:4px; font-size:.72rem; font-weight:700; color: var(--gold-dark); background: var(--gold-tint); padding:2px 8px; border-radius:6px; }

/* ------------------------ Banner CTA (navy) ----------------------------- */
.cta-band {
  background: radial-gradient(900px 400px at 15% 0%, var(--navy-500) 0%, transparent 60%),
              linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color:#fff; border-radius: var(--radius-lg); padding: 56px; text-align:center; position:relative; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color:#fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 560px; margin: 0 auto 28px; }
.cta-band__actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
@media (max-width: 560px){ .cta-band{ padding: 40px 24px } }

/* ----------------------------- Contato ---------------------------------- */
.contact { display:grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items:start; }
.contact__list { display:grid; gap: 18px; margin-top: 28px; }
.contact__item { display:flex; gap:16px; align-items:flex-start; }
.contact__item .ic { width:48px; height:48px; border-radius:12px; flex-shrink:0; display:grid; place-items:center; background: var(--navy); color: var(--gold); }
.contact__item .ic svg { width:20px; height:20px; }
.contact__item h4 { font-family:'Montserrat'; font-size:.95rem; color: var(--navy); }
.contact__item p { color: var(--muted); font-size:.92rem; }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family:'Montserrat'; font-weight:600; font-size:.85rem; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width:100%; padding: 14px 16px; border:1.5px solid var(--line); border-radius: 12px;
  background:#fbfcfe; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(220,167,58,.16); background:#fff;
}
.field--row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 860px){ .contact{ grid-template-columns: 1fr } .field--row{ grid-template-columns: 1fr } }

/* ------------------------------ Footer ---------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer__brand img { height: 56px; margin-bottom: 18px; }
.footer__brand p { font-size:.92rem; max-width: 300px; }
.footer h4 { color:#fff; font-family:'Montserrat'; font-size:.95rem; letter-spacing:.04em; margin-bottom: 20px; }
.footer__links { display:grid; gap:12px; }
.footer__links a { font-size:.92rem; color: rgba(255,255,255,.66); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__social { display:flex; gap:12px; margin-top:6px; }
.footer__social a { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; background: rgba(255,255,255,.06); color:#fff; transition:.2s; }
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer__social svg{ width:18px; height:18px; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.08); padding: 24px 0; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; }
@media (max-width: 860px){ .footer__grid{ grid-template-columns: 1fr 1fr } }
@media (max-width: 520px){ .footer__grid{ grid-template-columns: 1fr } }

/* ------------------------ Cabeçalho de página --------------------------- */
.page-head {
  background: radial-gradient(900px 400px at 80% -20%, var(--navy-500) 0%, transparent 55%),
              linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color:#fff; padding: 72px 0; text-align:center;
}
.page-head h1 { color:#fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: 14px 0 14px; }
.page-head p { color: rgba(255,255,255,.74); max-width: 600px; margin: 0 auto; font-size: 1.06rem; }
.breadcrumb { font-size:.85rem; color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }

/* ------------------------------ Reveal ---------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none } * { animation: none !important; } }
