/* ── TOKENS ─────────────────────────────────────── */
    :root {
      --navy:   #0D47A1;
      --navy2:  #1565C0;
      --gold:   #F5C518;
      --gold-lt:#FFD740;
      --white:  #FFFFFF;
      --off-white: #F5F5F0;
      --gray:   #6B7280;
      --gray-lt:#E5E7EB;
      --text:   #1F2937;

      --font-display: 'Montserrat', sans-serif;
      --font-body:    'Open Sans', sans-serif;

      --section-pad: 90px 0;
      --radius: 8px;
      --shadow: 0 4px 24px rgba(0,0,0,.12);
    }

    /* ── RESET ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }

    /* ── UTILITIES ──────────────────────────────────── */
    .container   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section-tag { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.2; }
    .divider-gold { width: 52px; height: 3px; background: var(--gold); margin: 16px 0 28px; }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s, background .2s;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36, 27, 27, 0.18); }
    .btn-gold   { background: var(--gold); color: #0D47A1; }
    .btn-gold:hover { background: var(--gold-lt); color: #0D47A1; }
    .btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
    .btn-outline:hover { background: var(--gold); color: #0D47A1; }

    /* ── NAVBAR ─────────────────────────────────────── */
    #navbar {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      background: rgba(13, 71, 161, .97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(245,197,24,.25);
      transition: box-shadow .3s;
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-logo-box {
      width: 46px; height: 46px; border-radius: 6px;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 900; font-size: 1rem;
      color: var(--navy); letter-spacing: .04em;
    }
    .nav-logo-text { font-family: var(--font-display); font-size: .78rem; font-weight: 700; color: var(--white); line-height: 1.3; }
    .nav-logo-text span { color: var(--gold); }

    nav ul { list-style: none; display: flex; gap: 4px; }
    nav ul li a {
      font-family: var(--font-display); font-size: .7rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8);
      padding: 6px 10px; border-radius: 4px;
      transition: color .2s, background .2s;
    }
    nav ul li a:hover { color: var(--gold); background: rgba(245,197,24,.1); }

    .nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.4rem; }

    /* ── HERO ────────────────────────────────────────── */
    #inicio {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0a3880 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding-top: 68px;
    }
    .hero-bg-lines {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(245,197,24,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,197,24,.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-diagonal {
      position: absolute; bottom: -2px; left: 0; right: 0;
      height: 90px; background: var(--white);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 80px 24px 120px;
      width: 100%;
    }
    .hero-logo-wrap {
      width: auto; height: auto;
      background: transparent;
      border: none;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 32px;
    }
    .hero-logo-inner {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
      color: var(--navy);
    }
    .hero-eyebrow { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .hero-title {
      font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 900; color: var(--white); line-height: 1.1;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .hero-title span { color: var(--white); }
    .hero-subtitle {
      font-family: var(--font-display); font-size: clamp(.9rem, 2vw, 1.1rem);
      font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 36px;
      letter-spacing: .04em;
    }
    .hero-badges {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
      margin-bottom: 40px;
    }
    .hero-badge {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(245,197,24,.4);
      border-radius: 999px;
      padding: 6px 18px;
      font-family: var(--font-display); font-size: .72rem; font-weight: 700;
      color: var(--white); letter-spacing: .06em;
    }
    .hero-badge i { color: var(--gold); margin-right: 6px; }

    /* ── O CONGRESSO ─────────────────────────────────── */
    #o-congresso { padding: var(--section-pad); background: var(--white); }
    .congress-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .congress-img-wrap {
      position: relative; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow);
    }
    .congress-img-wrap::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,71,161,.3) 0%, transparent 60%);
      z-index: 1;
    }
    .congress-img-placeholder {
      width: 100%; aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      color: rgba(255,255,255,.4); gap: 12px;
    }
    .congress-img-placeholder i { font-size: 3rem; }
    .congress-img-placeholder span { font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em; }
    .congress-text p { color: var(--gray); margin-bottom: 16px; font-size: .97rem; }
    .congress-text .btn { margin-top: 12px; }

    /* ── PROGRAMAÇÃO ─────────────────────────────────── */
    #programacao { padding: var(--section-pad); background: var(--off-white); }
    .prog-header { text-align: center; margin-bottom: 48px; }
    .prog-header .divider-gold { margin: 16px auto 0; }

    .accordion { display: flex; flex-direction: column; gap: 12px; }
    .acc-item {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--gray-lt);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
    }
    .acc-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 28px; cursor: pointer;
      user-select: none;
      transition: background .2s;
    }
    .acc-header:hover { background: rgba(245,197,24,.06); }
    .acc-day-info { display: flex; align-items: center; gap: 20px; }
    .acc-day-badge {
      background: var(--navy);
      color: var(--gold);
      font-family: var(--font-display); font-weight: 900; font-size: .75rem;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 4px;
    }
    .acc-day-label { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); }
    .acc-day-date { font-size: .82rem; color: var(--gray); }
    .acc-icon { font-size: 1rem; color: var(--gold); transition: transform .3s; }
    .acc-item.open .acc-icon { transform: rotate(180deg); }

    .acc-body { display: none; padding: 0 28px 24px; }
    .acc-item.open .acc-body { display: block; }

    .session {
      display: grid; grid-template-columns: 100px 1fr;
      gap: 16px; padding: 16px 0;
      border-bottom: 1px solid var(--gray-lt);
    }
    .session:last-child { border-bottom: none; }
    .session-time { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--gold); padding-top: 2px; }
    .session-info h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
    .session-info .session-theme { font-size: .82rem; color: var(--gray); font-style: italic; margin-bottom: 4px; }
    .session-info .session-speaker { font-size: .82rem; color: var(--navy2); font-weight: 600; }
    .session-info .session-speaker i { color: var(--gold); margin-right: 4px; font-size: .75rem; }

    /* ── SPEAKERS ────────────────────────────────────── */
    #speakers { padding: var(--section-pad); background: var(--navy); }
    .speakers-header { text-align: center; margin-bottom: 52px; }
    .speakers-header .section-title { color: var(--white); }
    .speakers-header .divider-gold { margin: 16px auto 0; }

    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .speaker-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(245,197,24,.2);
      border-radius: var(--radius);
      overflow: hidden;
      text-align: center;
      transition: transform .25s, border-color .25s, box-shadow .25s;
    }
    .speaker-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
    .speaker-photo {
      width: 100%; aspect-ratio: 1/1; object-fit: cover;
      background: linear-gradient(135deg, var(--navy2) 0%, #0a3880 100%);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.2); font-size: 3rem;
    }
    .speaker-photo-placeholder { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--navy2), #0a3880); display: flex; align-items: center; justify-content: center; }
    .speaker-body { padding: 16px 14px 14px; }
    .speaker-name { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--white); margin-bottom: 4px; }
    .speaker-role { font-size: .76rem; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
    .speaker-area { font-size: .74rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
    .speaker-links { display: flex; justify-content: center; gap: 10px; }
    .speaker-link {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(245,197,24,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: .8rem;
      transition: background .2s, color .2s;
    }
    .speaker-link:hover { background: var(--gold); color: #0D47A1; }

    /* ── CONEXÕES ────────────────────────────────────── */
    #conexoes { padding: var(--section-pad); background: var(--off-white); }
    .conexoes-header { text-align: center; margin-bottom: 52px; }
    .conexoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      border-top: 3px solid var(--gold);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: Georgia, serif; font-size: 5rem; line-height: 1;
      color: var(--gold); opacity: .2;
      position: absolute; top: 12px; left: 20px;
    }
    .testimonial-text { font-size: .93rem; color: var(--gray); font-style: italic; margin-bottom: 20px; line-height: 1.75; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-family: var(--font-display); font-weight: 900; font-size: .85rem;
      flex-shrink: 0;
    }
    .testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--navy); }
    .testimonial-role { font-size: .75rem; color: var(--gray); }

    /* ── LOCAL ───────────────────────────────────────── */
    #local { padding: var(--section-pad); background: var(--white); }
    .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .local-img-placeholder {
      aspect-ratio: 16/9; border-radius: var(--radius);
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      color: rgba(255,255,255,.35); gap: 12px; box-shadow: var(--shadow);
    }
    .local-img-placeholder i { font-size: 3rem; }
    .local-img-placeholder span { font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em; }
    .local-address { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
    .local-address i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
    .local-address span { font-size: .92rem; color: var(--gray); }
    .local-text p { color: var(--gray); font-size: .94rem; margin-bottom: 20px; }
    .local-name { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; }

    /* ── HOSPEDAGEM ──────────────────────────────────── */
    #hospedagem { padding: var(--section-pad); background: var(--navy); }
    .hosp-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .hosp-text .section-title { color: var(--white); }
    .hosp-text p { color: rgba(255,255,255,.7); font-size: .94rem; margin-bottom: 16px; }
    .hosp-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.4);
      border-radius: 999px; padding: 8px 18px;
      font-family: var(--font-display); font-size: .75rem; font-weight: 700;
      color: var(--gold); letter-spacing: .06em; margin-bottom: 28px;
    }
    .hosp-hotels { display: flex; flex-direction: column; gap: 14px; }
    .hotel-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(245,197,24,.2);
      border-radius: var(--radius);
      padding: 18px 20px;
      display: flex; align-items: center; gap: 16px;
    }
    .hotel-icon {
      width: 44px; height: 44px; border-radius: 6px;
      background: rgba(245,197,24,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
    }
    .hotel-info h4 { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--white); margin-bottom: 3px; }
    .hotel-info span { font-size: .78rem; color: rgba(255,255,255,.5); }
    .hotel-disc { margin-left: auto; font-family: var(--font-display); font-weight: 900; font-size: .9rem; color: var(--gold); }

    /* ── CONTATOS ────────────────────────────────────── */
    #contatos { padding: var(--section-pad); background: var(--off-white); }
    .contatos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .contato-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .contato-icon {
      width: 44px; height: 44px; border-radius: 8px;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1rem; flex-shrink: 0;
    }
    .contato-label { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
    .contato-value { font-size: .92rem; color: var(--text); }
    .contatos-img-placeholder {
      aspect-ratio: 4/3; border-radius: var(--radius);
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      color: rgba(255,255,255,.35); gap: 12px; box-shadow: var(--shadow);
    }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(245,197,24,.2);
      padding: 40px 0 24px;
    }
    .footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 20px; }
    .footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); text-align: center; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-gold-bar { width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 32px; }

    /* ── SCROLL ANIMATIONS ───────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .speakers-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      nav { display: none; }
      nav.open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; border-top: 1px solid rgba(245,197,24,.2); }
      nav.open ul { flex-direction: column; gap: 4px; }
      .nav-toggle { display: block; }
      .congress-grid, .local-grid, .hosp-inner, .contatos-grid { grid-template-columns: 1fr; gap: 40px; }
      .conexoes-grid { grid-template-columns: 1fr 1fr; }
      .speakers-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      :root { --section-pad: 60px 0; }
      .conexoes-grid { grid-template-columns: 1fr; }
      .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .session { grid-template-columns: 1fr; gap: 4px; }
    }

    /* ── WAVE DECORATION (ABEA identity) ────────────── */
    .hero-wave-top {
      position: absolute; top: 0; right: 0; width: 45%; pointer-events: none; z-index: 1; opacity: .18;
    }
    .hero-wave-bottom {
      position: absolute; bottom: 80px; left: 0; width: 35%; pointer-events: none; z-index: 1; opacity: .12;
    }
    .hero-diagonal { background: var(--white); }
    #navbar { border-bottom: 1px solid rgba(245,197,24,.3); }
    .nav-logo-box { background: var(--gold); color: #0D47A1; }
    .footer-gold-bar { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .acc-day-badge { background: var(--navy); color: var(--gold); }
    .testimonial-avatar { background: var(--navy); color: var(--gold); }
    .contato-icon { background: var(--navy); color: var(--gold); }
    .hotel-icon { background: rgba(245,197,24,.15); color: var(--gold); }
    .hosp-badge { background: rgba(245,197,24,.12); border-color: rgba(245,197,24,.4); color: var(--gold); }

    /* ── EIXO TEMÁTICO ──────────────────────────────── */
    .eixo-tematico {
      background: var(--white);
      border: 1px solid var(--gray-lt);
      border-radius: 12px;
      padding: 28px 36px;
      margin-bottom: 36px;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      position: relative;
    }
    .eixo-inner {
      border-left: 4px solid var(--gold);
      padding-left: 20px;
    }
    .eixo-label {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: .82rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .eixo-text {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.65;
    }
    .eixo-text strong { color: var(--text); }
/* ── UTILITÁRIOS EXTRAÍDOS DO HTML ───────────────────── */
.logo-img { width: auto; display: block; }
.logo-img--small { height: 40px; }
.logo-img--hero { width: 240px; height: auto; }
.local-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.icon-spaced { margin-right: 8px; }
.text-gold { color: var(--gold); }
.divider-centered { margin: 16px auto 0; }
.contact-link { color: var(--text); text-decoration: none; }
.placeholder-icon-lg { font-size: 3rem; }
.placeholder-label {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
}
.speaker-placeholder-icon {
  font-size: 3rem;
  color: rgba(255,255,255,.15);
}
#main-nav a.is-active { color: var(--gold); }
.acc-header:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}