html {
  scroll-behavior: smooth;
}

/* ── Tokens ── */
    :root {
      --navy:   #0f1e3c;
      --gold:   #e8a820;
      --gold-lt:#f5c842;
      --white:  #ffffff;
      --off:    #f5f4f0;
      --muted:  #6b7280;
      --radius: 14px;
      --shadow: 0 8px 32px rgba(15,30,60,.10);
    }

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── HEADER ── */
    header {
      position: sticky; top: 0; z-index: 100;
      background: linear-gradient(90deg, var(--navy) 0%, #1a3260 100%);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 68px;
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }
    .logo { display: flex; align-items: center; gap: 10px; width: 12em; margin-top: 5px;}
  
    
    .logo-icon svg { width: 22px; height: 22px; fill: var(--navy); }
    .logo-text { line-height: 1; }
    .logo-text strong {
      font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700;
      color: var(--white); letter-spacing: .5px;
    }
    .logo-text span {
      display: block; font-size: .65rem; font-weight: 300;
      color: rgba(255,255,255,.55); letter-spacing: 2px; text-transform: uppercase;
    }
    nav { display: flex; align-items: center; gap: 8px; }
    nav a {
      font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
      color: rgba(255,255,255,.78); padding: 6px 14px; border-radius: 6px;
      transition: color .2s, background .2s;
    }
    nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    nav a.active { color: var(--gold); }
    .btn-portal {
      margin-left: 16px; background: var(--gold); color: var(--navy) !important;
      font-weight: 700 !important; padding: 8px 20px !important;
      border-radius: 8px !important; font-size: .88rem !important;
      transition: background .2s, transform .15s !important;
    }
    .btn-portal:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-drawer {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: linear-gradient(180deg, #1a3260 0%, var(--navy) 100%);
      padding: 16px 24px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.3);
      z-index: 99; flex-direction: column; gap: 4px;
    }
    .nav-drawer.open { display: flex; }
    .nav-drawer a {
      font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
      color: rgba(255,255,255,.82); padding: 12px 16px; border-radius: 8px;
      transition: background .2s, color .2s;
    }
    .nav-drawer a:hover { background: rgba(255,255,255,.08); color: var(--white); }
    .nav-drawer .btn-portal { margin-left: 0 !important; margin-top: 8px; text-align: center; }

    /* ── SHARED ── */
    .section-label {
      display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; color: var(--navy); line-height: 1.2;
    }
    .section-title em { color: var(--gold); font-style: normal; }

    /* ── HERO ── */
    .hero {
      background: var(--off);
      padding: 72px 48px 64px;
      text-align: center;
    }
    .hero-inner { max-width: 680px; margin: 0 auto; }
    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      line-height: 1.15; margin-bottom: 20px;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 40px; }

    /* Stats row */
    .stats {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
    }
    .stat-chip {
      background: var(--white);
      border: 1.5px solid #e2e5ec;
      border-radius: 50px; padding: 10px 24px;
      display: flex; align-items: center; gap: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }
    .stat-chip strong {
      font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy);
    }
    .stat-chip span { font-size: .85rem; color: var(--muted); }

    /* ── PILLARS (Missão/Visão/Valores) ── */
    .pillars-section {
      padding: 80px 48px;
      max-width: 1160px; margin: 0 auto;
    }
    .pillars-section > .section-label,
    .pillars-section > .section-title { display: block; text-align: center; margin-bottom: 4px; }
    .pillars-section > .section-title { margin-bottom: 48px; }

    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .pillar-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid #e2e5ec;
      padding: 32px 28px;
      box-shadow: -6px 0 0 0 var(--gold), var(--shadow);
      transition: transform .2s;
    }
    .pillar-card:hover { transform: translateY(-4px); }
    .pillar-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .pillar-card h3 {
      font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .pillar-card p { font-size: .92rem; color: var(--muted); line-height: 1.7; }

    /* ── HISTORY ── */
    .history-section {
      background: var(--off);
      padding: 80px 48px;
    }
    .history-inner { max-width: 1160px; margin: 0 auto; }
    .history-inner > .section-label,
    .history-inner > .section-title { display: block; text-align: center; margin-bottom: 4px; }
    .history-inner > .section-title { margin-bottom: 56px; }

    .history-wrapper {
      display: flex; flex-direction: column; gap: 0;
      max-width: 700px; margin: 0 auto;
      position: relative;
    }
    /* Vertical line */
    .history-wrapper::before {
      content: ''; position: absolute;
      left: 18px; top: 8px; bottom: 8px; width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(232,168,32,.15));
      border-radius: 2px;
    }
    .history-item {
      display: flex; gap: 28px; align-items: flex-start;
      padding-bottom: 40px; position: relative;
    }
    .history-item:last-child { padding-bottom: 0; }
    .history-dot {
      width: 38px; height: 38px; flex-shrink: 0;
      background: var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 4px var(--off), 0 0 0 6px var(--gold);
      position: relative; z-index: 1;
    }
    .history-dot svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 2.5; fill: none; }
    .history-content {
      background: var(--white);
      border-radius: var(--radius); padding: 22px 24px;
      border: 1.5px solid #e2e5ec;
      box-shadow: var(--shadow);
      flex: 1;
    }
    .history-content .tag {
      font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
    }
    .history-content h3 {
      font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 6px;
    }
    .history-content p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

    /* ── TEAM ── */
    .team-section {
      padding: 80px 48px;
      max-width: 1160px; margin: 0 auto;
      text-align: center;
    }
    .team-section > .section-label,
    .team-section > .section-title { display: block; margin-bottom: 4px; }
    .team-section > .section-title { margin-bottom: 48px; }

    .team-grid {
      display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    }
    .team-card {
      background: var(--white);
      border: 1.5px solid #e2e5ec;
      border-radius: var(--radius);
      padding: 36px 32px;
      width: 280px;
      box-shadow: -6px 0 0 0 var(--gold), var(--shadow);
      transition: transform .2s;
    }
    .team-card:hover { transform: translateY(-4px); }
    .team-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700;
      color: var(--gold);
      border: 3px solid var(--gold);
    }
    .team-card h3 {
      font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700;
      color: var(--navy); margin-bottom: 4px;
    }
    .team-card .role {
      font-size: .85rem; color: var(--gold); font-weight: 600; margin-bottom: 12px;
    }
    .team-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ── CTA ── */
    .cta-section {
      background: var(--navy);
      padding: 72px 48px;
      text-align: center;
    }
    .cta-section h2 {
      font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700; color: var(--white); margin-bottom: 12px;
    }
    .cta-section p { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 32px; }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--navy);
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .95rem;
      padding: 14px 32px; border-radius: 10px;
      box-shadow: 0 4px 18px rgba(232,168,32,.35);
      transition: background .2s, transform .15s;
    }
    .btn-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); padding: 60px 48px 0;
      color: rgba(255,255,255,.65);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
      gap: 48px; max-width: 1160px; margin: 0 auto; padding-bottom: 48px;
    }
    .footer-brand p { font-size: .88rem; line-height: 1.65; margin-top: 10px; color: rgba(255,255,255,.5); }
    footer h4 {
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .8rem;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
    footer ul li a:hover { color: var(--white); }
    footer ul li span { font-size: .9rem; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 18px 48px; max-width: 1160px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      font-size: .8rem; color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
    .footer-bottom a:hover { color: var(--gold); }
    .footer-legal { display: flex; gap: 20px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      header { padding: 0 24px; }
      header nav { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 52px 24px 44px; }
      .pillars-section { padding: 56px 24px; }
      .pillars-grid { grid-template-columns: 1fr; }
      .history-section { padding: 56px 24px; }
      .team-section { padding: 56px 24px; }
      .cta-section { padding: 56px 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
      footer { padding: 48px 24px 0; }
      .footer-bottom { padding: 18px 24px; }
    }
    @media (max-width: 600px) {
      .stats { flex-direction: column; align-items: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }