* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: clip;
  width: 100%;
}

body { font-family: 'Nunito', sans-serif; }    :root {
      --navy: #1a2472;
      --navy-dark: #0e1550;
      --navy-mid: #243090;
      --gold: #c8960c;
      --gold-light: #daa820;
      --cream: #faf7f0;
      --white: #ffffff;
    }


    /* ═══════════════════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
    }
    .reveal.reveal--left  { transform: translateX(-40px); }
    .reveal.reveal--right { transform: translateX(40px); }
    .reveal.reveal--scale { transform: translateY(20px) scale(0.96); }
    .reveal.in-view       { opacity: 1; transform: translate(0) scale(1); }

    .reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
    .reveal-group.in-view > * { opacity: 1; transform: translateY(0); }
    .reveal-group.in-view > *:nth-child(1) { transition-delay: 0s; }
    .reveal-group.in-view > *:nth-child(2) { transition-delay: .1s; }
    .reveal-group.in-view > *:nth-child(3) { transition-delay: .2s; }
    .reveal-group.in-view > *:nth-child(4) { transition-delay: .3s; }
    .reveal-group.in-view > *:nth-child(5) { transition-delay: .4s; }
    .reveal-group.in-view > *:nth-child(6) { transition-delay: .5s; }

    .sr { opacity: 0; transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
    .sr--up    { transform: translateY(36px); }
    .sr--left  { transform: translateX(-44px); }
    .sr--right { transform: translateX(44px); }
    .sr--scale { transform: scale(.94) translateY(20px); }
    .sr.visible { opacity: 1; transform: translate(0) scale(1); }
    .sr-d1 { transition-delay: .08s; }
    .sr-d2 { transition-delay: .18s; }
    .sr-d3 { transition-delay: .28s; }
    .sr-d4 { transition-delay: .38s; }
    .sr-d5 { transition-delay: .48s; }
    .sr-d6 { transition-delay: .58s; }
    .sr-d7 { transition-delay: .68s; }
    .sr-d8 { transition-delay: .78s; }

    /* ═══════════════════════════════════════
       TOPBAR
    ═══════════════════════════════════════ */
    .topbar {
      background: var(--navy-dark);
      height: 0; overflow: hidden;
      padding: 0 3rem;
      display: flex; align-items: center; justify-content: space-between;
      animation: slideDown 0.5s ease 0.1s forwards;
    }
    @keyframes slideDown { to { height: 38px; } }

    .topbar-left {
      display: flex; align-items: center; gap: 1.4rem;
      opacity: 0; animation: fadeIn 0.4s ease 0.55s forwards;
    }
    .topbar-right {
      display: flex; align-items: center; gap: 6px;
      opacity: 0; animation: fadeIn 0.4s ease 0.7s forwards;
    }
    @keyframes fadeIn { to { opacity: 1; } }

    .tb-item {
      display: flex; align-items: center; gap: 7px;
      color: #9aa2c8; font-size: 11.5px; font-weight: 400;
      letter-spacing: 0.02em; text-decoration: none; transition: color .25s;
    }
    .tb-item:hover { color: var(--gold-light); }
    .tb-item i { font-size: 10px; color: var(--gold); transition: transform .3s; }
    .tb-item:hover i { transform: scale(1.2); }
    .tb-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.1); }

    .tb-social {
      width: 24px; height: 24px; border-radius: 6px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: #8891b4; font-size: 10px; text-decoration: none;
      transition: all .25s cubic-bezier(.4,0,.2,1);
    }
    .tb-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }

    /* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
    .navbar {
      background: var(--white);
      height: 76px; padding: 0 3rem;
      display: flex; align-items: center; justify-content: space-between;
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 1px 0 rgba(26,36,114,0.07), 0 4px 24px rgba(26,36,114,0.06);
      opacity: 0; transform: translateY(-8px);
      animation: navIn 0.5s cubic-bezier(.4,0,.2,1) 0.55s forwards;
    }
    @keyframes navIn { to { opacity: 1; transform: translateY(0); } }

    .gold-bar {
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
      transform: scaleX(0); transform-origin: center;
      animation: barExpand 0.6s cubic-bezier(.4,0,.2,1) 1s forwards;
    }
    @keyframes barExpand { to { transform: scaleX(1); } }

    .logo-wrap {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none; flex-shrink: 0;
      opacity: 0; animation: fadeIn 0.5s ease 0.8s forwards;
    }
    .logo-img {
      height: 52px; width: auto; object-fit: contain;
      transition: transform .4s cubic-bezier(.4,0,.2,1), filter .4s;
      filter: drop-shadow(0 0 0 rgba(200,150,12,0));
    }
    .logo-wrap:hover .logo-img { transform: scale(1.04); filter: drop-shadow(0 2px 10px rgba(200,150,12,0.25)); }

    .logo-divider {
      width: 1px; height: 38px;
      background: linear-gradient(to bottom, transparent, rgba(26,36,114,0.18), transparent);
      transition: background .3s;
    }
    .logo-wrap:hover .logo-divider { background: linear-gradient(to bottom, transparent, rgba(200,150,12,0.4), transparent); }

    .logo-text { display: flex; flex-direction: column; gap: 3px; }
    .logo-name {
      font-family: 'Nunito', serif;
      font-size: 17.5px; font-weight: 600; color: var(--navy);
      letter-spacing: 0.015em; line-height: 1; transition: color .3s;
    }
    .logo-wrap:hover .logo-name { color: var(--navy-mid); }
    .logo-tag {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 11px; letter-spacing: 0.18em; color: var(--gold);
      transition: letter-spacing .4s, color .3s;
    }
    .logo-wrap:hover .logo-tag { letter-spacing: 0.24em; color: var(--gold-light); }

    .nav-links {
      display: flex; align-items: center; list-style: none;
      opacity: 0; animation: fadeIn 0.5s ease 0.95s forwards;
    }
    .nav-links li a {
      display: flex; align-items: center; height: 76px; padding: 0 1rem;
      font-size: 12px; font-weight: 500; letter-spacing: 0.07em;
      color: #3a4070; text-decoration: none; text-transform: uppercase;
      position: relative; transition: color .25s;
    }
    .nav-links li a span { position: relative; display: inline-block; transition: transform .25s cubic-bezier(.4,0,.2,1); }
    .nav-links li a:hover span { transform: translateY(-1px); }
    .nav-links li a::after {
      content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--gold); border-radius: 2px 2px 0 0;
      transition: left .3s cubic-bezier(.4,0,.2,1), right .3s cubic-bezier(.4,0,.2,1);
    }
    .nav-links li a:hover { color: var(--navy); }
    .nav-links li a:hover::after { left: 0.6rem; right: 0.6rem; }

    .nav-cta-wrap { margin-left: 1rem; opacity: 0; animation: fadeIn 0.5s ease 1.1s forwards; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px; background: var(--navy); color: var(--white);
      font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
      text-decoration: none; border-radius: 8px; position: relative; overflow: hidden;
      transition: color .3s, transform .2s, box-shadow .3s;
      box-shadow: 0 2px 0 rgba(14,21,80,0.3);
    }
    .nav-cta::before {
      content: ''; position: absolute; inset: 0; background: var(--gold);
      transform: translateX(-101%); transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 0;
    }
    .nav-cta:hover::before { transform: translateX(0); }
    .nav-cta:hover { color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,12,0.3); }
    .nav-cta i, .nav-cta span { position: relative; z-index: 1; }
    .nav-cta i { font-size: 11px; transition: transform .3s; }
    .nav-cta:hover i { transform: rotate(-10deg) scale(1.15); }

    /* Menu hamburguer (só mobile) */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
      z-index: 101;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: all .3s cubic-bezier(.4,0,.2,1);
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Drawer mobile */
    .mobile-nav {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy-dark);
      z-index: 99;
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.5rem;
      opacity: 0; transition: opacity .3s;
      pointer-events: none;
    }
    .mobile-nav.open { opacity: 1; pointer-events: all; }
    .mobile-nav a {
      font-family: 'Nunito', serif;
      font-size: 26px; font-weight: 600; color: rgba(255,255,255,0.8);
      text-decoration: none; padding: 0.7rem 2rem;
      letter-spacing: 0.04em;
      transition: color .2s, transform .2s;
      transform: translateY(20px); opacity: 0;
      transition: opacity .4s, transform .4s, color .2s;
    }
    .mobile-nav.open a {
      opacity: 1; transform: translateY(0);
    }
    .mobile-nav.open a:nth-child(1) { transition-delay: .05s; }
    .mobile-nav.open a:nth-child(2) { transition-delay: .1s; }
    .mobile-nav.open a:nth-child(3) { transition-delay: .15s; }
    .mobile-nav.open a:nth-child(4) { transition-delay: .2s; }
    .mobile-nav.open a:nth-child(5) { transition-delay: .25s; }
    .mobile-nav.open a:nth-child(6) { transition-delay: .3s; }
    .mobile-nav a:hover { color: var(--gold-light); transform: translateX(4px); }
    .mobile-nav .mobile-cta {
      margin-top: 1.5rem;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 32px; background: var(--gold); color: var(--navy-dark);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
      border-radius: 8px; text-decoration: none;
      transition-delay: .35s !important;
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      position: relative; width: 100%; height: 580px;
      overflow: hidden; display: flex; align-items: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('/imgs/ct/imagem1\ \(1\).jpg') center center / cover no-repeat;
      transform: scale(1.06); animation: heroZoom 8s ease forwards;
    }
    @keyframes heroZoom { to { transform: scale(1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(10,14,60,0.253) 0%, rgba(10,14,60,0.72) 45%, rgba(10,14,60,0.18) 100%);
    }
    .hero-line {
      position: absolute; left: 3rem; top: 50%;
      transform: translateY(-50%) scaleY(0); transform-origin: top;
      width: 2px; height: 120px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      animation: lineGrow 0.7s cubic-bezier(.4,0,.2,1) 0.9s forwards;
    }
    @keyframes lineGrow { to { transform: translateY(-50%) scaleY(1); } }

    .hero-content {
      position: relative; z-index: 2;
      padding: 0 5.5rem; max-width: 600px;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 10px; margin-bottom: 1.4rem;
      opacity: 0; animation: slideUp 0.6s ease 0.5s forwards;
    }
    .hero-eyebrow span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); }
    .eyebrow-line { display: inline-block; width: 32px; height: 1.5px; background: var(--gold); }

    .hero-title {
      font-family: 'Nunito', serif;
      font-size: 46px; font-weight: 700; color: var(--white);
      line-height: 1.15; letter-spacing: 0.01em; margin-bottom: 1.2rem;
      opacity: 0; animation: slideUp 0.7s ease 0.7s forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px; font-style: italic; color: rgba(255,255,255,0.78);
      line-height: 1.65; margin-bottom: 2.2rem; max-width: 440px;
      opacity: 0; animation: slideUp 0.7s ease 0.9s forwards;
    }
    @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    .hero-actions {
      display: flex; align-items: center; gap: 1rem;
      opacity: 0; animation: slideUp 0.6s ease 1.1s forwards;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 13px 28px; background: var(--gold); color: var(--navy-dark);
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; border-radius: 6px; position: relative; overflow: hidden;
      transition: transform .25s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(200,150,12,0.35);
    }
    .btn-primary::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-101%); transition: transform .3s cubic-bezier(.4,0,.2,1); }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,150,12,0.45); }
    .btn-primary i { font-size: 12px; transition: transform .3s; }
    .btn-primary:hover i { transform: translateX(3px); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 24px; background: transparent; color: rgba(255,255,255,0.85);
      font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
      text-decoration: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; transition: all .25s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: var(--white); transform: translateY(-2px); }

    .hero-badge {
      position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.07); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 14px 20px;
      opacity: 0; animation: slideUp 0.6s ease 1.3s forwards;
    }
    .badge-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 14px; flex-shrink: 0; }
    .badge-text { display: flex; flex-direction: column; gap: 1px; }
    .badge-text strong { font-family: 'Nunito', serif; font-size: 16px; font-weight: 700; color: var(--white); line-height: 1; }
    .badge-text span { font-size: 10.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

    .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0; animation: fadeIn 0.5s ease 1.5s forwards; }
    .scroll-dot { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); animation: scrollPulse 1.8s ease-in-out 1.5s infinite; }
    @keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1);}50%{opacity:1;transform:scaleY(1.15);} }

    /* ═══════════════════════════════════════
       QUEM SOMOS
    ═══════════════════════════════════════ */
    .qs-section { background: #fff; padding: 6rem 0 0; overflow: hidden; }
    .qs-intro { max-width: 860px; margin: 0 auto; padding: 0 3rem 5rem; text-align: center; }

    .section-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.6rem; }
    .tag-line { display: inline-block; width: 28px; height: 1.5px; background: var(--gold); }
    .tag-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }

    .qs-headline { font-family: 'Nunito', serif; font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.4rem; }
    .qs-headline em { font-style: italic; color: var(--gold); }
    .qs-lead { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: #6b7080; line-height: 1.75; max-width: 680px; margin: 0 auto; }

    .stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(26,36,114,0.07); border-bottom: 1px solid rgba(26,36,114,0.07); }
    .stat-item { padding: 2rem 1rem; text-align: center; position: relative; transition: background .3s; }
    .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(26,36,114,0.1); }
    .stat-item:hover { background: #f0f2f9; }
    .stat-number { font-family: 'Nunito', serif; font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; display: block; margin-bottom: 4px; }
    .stat-number span { color: var(--gold); }
    .stat-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #6b7080; }

    .qs-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
    .story-visual { position: relative; background: var(--navy-dark); overflow: hidden; min-height: 480px; }
    .story-img-placeholder { position: absolute; inset: 0; background: url('/imgs/fundador.jpg') center/cover no-repeat; background-color: #1a2472; opacity: 0.7; transition: transform 0.1s linear; will-change: transform; }
    .story-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,14,60,0.6) 0%, rgba(10,14,60,0.2) 100%); }
    .story-quote { position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem; z-index: 2; background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.13); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1.4rem 1.6rem; }
    .quote-icon { font-size: 22px; color: var(--gold); line-height: 1; margin-bottom: 0.6rem; display: block; font-family: 'Nunito', serif; }
    .story-quote p { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 0.8rem; }
    .quote-author { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
    .story-text { padding: 4rem 4rem 4rem 4.5rem; display: flex; flex-direction: column; justify-content: center; background: #fff; }
    .story-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.4rem; }
    .story-eyebrow span { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
    .story-title { font-family: 'Nunito', serif; font-size: 28px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 1.4rem; }
    .story-body p { font-size: 15px; color: #6b7080; line-height: 1.8; margin-bottom: 1rem; }
    .story-body p:last-child { margin-bottom: 0; }
    .story-body strong { color: #2a2d45; font-weight: 600; }

    .qs-timeline { background: #f0f2f9; padding: 5rem 3rem; }
    .timeline-header { text-align: center; margin-bottom: 3.5rem; }
    .timeline-title { font-family: 'Nunito', serif; font-size: 30px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .timeline-sub { font-size: 13px; color: #6b7080; letter-spacing: 0.05em; }
    .timeline-track { max-width: 820px; margin: 0 auto; position: relative; padding-left: 2rem; }
    .timeline-track::before { content: ''; position: absolute; left: 0; top: 8px; width: 2px; height: 0; background: linear-gradient(to bottom, var(--gold), rgba(200,150,12,0.15)); transition: height 1.2s cubic-bezier(.4,0,.2,1); }
    .timeline-track.in-view::before { height: calc(100% - 16px); }
    .tl-item { position: relative; padding: 0 0 2.8rem 2.8rem; }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-dot { position: absolute; left: -6px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); transition: background .3s, transform .3s; }
    .tl-item:hover .tl-dot { background: var(--gold); transform: scale(1.3); }
    .tl-year { font-family: 'Nunito', serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
    .tl-event { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
    .tl-desc { font-size: 14px; color: #6b7080; line-height: 1.7; }

    .qs-bottom { display: grid; grid-template-columns: 1fr 1fr; }
    .valores-block { background: var(--navy); padding: 4.5rem 4rem; }
    .block-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; display: block; }
    .block-title { font-family: 'Nunito', serif; font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 2rem; line-height: 1.35; }
    .valores-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
    .valor-item { display: flex; align-items: flex-start; gap: 14px; }
    .valor-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(200,150,12,0.15); border: 1px solid rgba(200,150,12,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 13px; flex-shrink: 0; margin-top: 1px; transition: background .3s, transform .3s; }
    .valor-item:hover .valor-icon { background: rgba(200,150,12,0.28); transform: rotate(8deg) scale(1.1); }
    .valor-text strong { display: block; font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    .valor-text span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
    .equipe-block { background: #faf3e0; padding: 4.5rem 4rem; border-left: 1px solid rgba(200,150,12,0.15); }
    .equipe-block .block-title { color: var(--navy); }
    .equipe-block .block-eyebrow { color: var(--gold); }
    .equipe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .equipe-card { background: #fff; border-radius: 10px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(200,150,12,0.12); transition: box-shadow .25s, transform .25s; }
    .equipe-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,36,114,0.08); }
    .equipe-icon { width: 34px; height: 34px; border-radius: 50%; background: #f0f2f9; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 12px; flex-shrink: 0; }
    .equipe-card span { font-size: 12.5px; font-weight: 500; color: #2a2d45; line-height: 1.4; }

    .osc-banner { background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 3.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
    .osc-text h3 { font-family: 'Nunito', serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
    .osc-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 560px; }
    .osc-badge { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 1.2rem 1.8rem; flex-shrink: 0; }
    .osc-badge-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 18px; }
    .osc-badge-text strong { display: block; font-family: 'Nunito', serif; font-size: 15px; color: #fff; margin-bottom: 2px; }
    .osc-badge-text span { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }

    /* ═══════════════════════════════════════
       MISSÃO VISÃO VALORES
    ═══════════════════════════════════════ */
    .mvv-section {
      padding: 7rem 3rem 0; background: var(--cream);
      overflow: hidden; position: relative;
    }
    .mvv-section::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(rgba(26,36,114,0.045) 1px, transparent 1px);
      background-size: 28px 28px; pointer-events: none;
    }
    .mvv-header { text-align: center; max-width: 640px; margin: 0 auto 5rem; position: relative; z-index: 1; }
    .mvv-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.4rem; }
    .mvv-title { font-family: 'Nunito', serif; font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
    .mvv-title em { font-style: italic; color: var(--gold); }
    .mvv-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: #7a8099; line-height: 1.7; }

    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; position: relative; z-index: 1; }
    .mv-card { padding: 3.8rem 4rem; position: relative; overflow: hidden; }
    .mv-card--missao { background: var(--navy-dark); }
    .mv-card--visao  { background: var(--navy); }
    .mv-card::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(200,150,12,0.1); bottom: -80px; right: -60px; pointer-events: none; }
    .mv-card::before { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(200,150,12,0.08); bottom: -20px; right: -20px; pointer-events: none; }

    .mv-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: rgba(200,150,12,0.15); border: 1px solid rgba(200,150,12,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 20px; margin-bottom: 1.8rem; transition: background .3s, transform .4s cubic-bezier(.4,0,.2,1); }
    .mv-card:hover .mv-icon-wrap { background: rgba(200,150,12,0.28); transform: rotate(-6deg) scale(1.08); }
    .mv-card-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.8rem; display: block; }
    .mv-card-title { font-family: 'Nunito', serif; font-size: 28px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 1.4rem; }
    .mv-card-text { font-size: 14.5px; color: rgba(255,255,255,0.62); line-height: 1.85; }
    .mv-card-accent { position: absolute; left: 0; top: 3.5rem; bottom: 3.5rem; width: 3px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); transform: scaleY(0); transform-origin: top; transition: transform .8s cubic-bezier(.4,0,.2,1); }
    .mv-card.visible .mv-card-accent { transform: scaleY(1); }

    .valores-section { background: #fff; padding: 5rem 4rem 6rem; position: relative; z-index: 1; }
    .valores-inner { max-width: 1100px; margin: 0 auto; }
    .valores-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.2rem; }
    .valores-head-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
    .valores-head-title { font-family: 'Nunito', serif; font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1.2; }
    .valores-head-title em { font-style: italic; color: var(--gold); }
    .valores-head-desc { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: #8a90a8; line-height: 1.6; max-width: 300px; text-align: right; }

    .valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    .valor-card { background: var(--cream); border-radius: 16px; padding: 1.8rem 1.6rem; border: 1px solid rgba(26,36,114,0.07); position: relative; overflow: hidden; cursor: default; transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s; }
    .valor-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,150,12,0) 0%, rgba(200,150,12,0.06) 100%); opacity: 0; transition: opacity .3s; }
    .valor-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(26,36,114,0.1); border-color: rgba(200,150,12,0.28); }
    .valor-card:hover::before { opacity: 1; }
    .valor-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-dark); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 16px; margin-bottom: 1.2rem; position: relative; z-index: 1; transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s; }
    .valor-card:hover .valor-card-icon { transform: rotate(-8deg) scale(1.1); background: var(--navy-mid); }
    .valor-card-num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: 'Nunito', serif; font-size: 42px; font-weight: 700; color: rgba(26,36,114,0.05); line-height: 1; pointer-events: none; transition: color .3s; }
    .valor-card:hover .valor-card-num { color: rgba(200,150,12,0.08); }
    .valor-card-name { font-family: 'Nunito', serif; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; position: relative; z-index: 1; }
    .valor-card-bar { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: width .4s cubic-bezier(.4,0,.2,1); }
    .valor-card:hover .valor-card-bar { width: 44px; }

    .mvv-closing { background: linear-gradient(108deg, var(--navy-dark) 0%, #1e2b8a 100%); padding: 4.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
    .mvv-closing::before { content: '"'; font-family: 'Nunito', serif; font-size: 280px; font-weight: 700; color: rgba(200,150,12,0.05); position: absolute; top: -40px; left: 50%; transform: translateX(-50%); line-height: 1; pointer-events: none; }
    .closing-text { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 680px; margin: 0 auto 1.4rem; position: relative; z-index: 1; }
    .closing-text em { color: var(--gold-light); font-style: normal; font-weight: 600; }
    .closing-author { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); position: relative; z-index: 1; display: block; }
    .closing-dots { display: flex; justify-content: center; gap: 6px; margin-top: 2.2rem; position: relative; z-index: 1; }
    .closing-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(200,150,12,0.3); }
    .closing-dots span:nth-child(2) { background: var(--gold); }


    /* ═══════════════════════════════════════════════════════
       RESPONSIVO MOBILE — tudo abaixo de 768px
    ═══════════════════════════════════════════════════════ */

    /* ── TABLET (até 1024px) ── */
    @media (max-width: 1024px) {
      .nav-links, .nav-cta-wrap { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-nav { display: flex; }

      .topbar { padding: 0 1.5rem; }
      .tb-sep, .topbar-left .tb-item:last-child { display: none; }

      .navbar { padding: 0 1.5rem; height: 68px; }

      .valores-grid { grid-template-columns: repeat(2, 1fr); }
      .valores-section { padding: 4rem 2rem 5rem; }
    }

    /* ── MOBILE (até 768px) ── */
    @media (max-width: 768px) {

      /* Topbar — ocultar completamente */
      .topbar { display: none; }

      /* Navbar */
      .navbar { padding: 0 1.2rem; height: 64px; }
      .logo-img { height: 40px; }
      .logo-name { font-size: 14px; }
      .logo-tag { font-size: 9.5px; letter-spacing: 0.12em; }

      /* Hero */
      .hero { height: 100svh; min-height: 520px; align-items: flex-end; padding-bottom: 5rem; }
      .hero-line { display: none; }
      .hero-content { padding: 0 1.5rem; max-width: 100%; }
      .hero-title { font-size: 34px; }
      .hero-desc { font-size: 17px; margin-bottom: 1.8rem; max-width: 100%; }
      .hero-eyebrow span { font-size: 9.5px; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .hero-badge { display: none; }

      /* Quem Somos */
      .qs-section { padding: 4rem 0 0; }
      .qs-intro { padding: 0 1.5rem 3rem; }
      .qs-headline { font-size: 28px; }
      .qs-lead { font-size: 17px; }

      /* Stats */
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after { display: none; }
      .stat-item:nth-child(3)::after { display: none; }
      .stat-number { font-size: 30px; }

      /* História */
      .qs-story { grid-template-columns: 1fr; }
      .story-visual { min-height: 300px; }
      .story-text { padding: 2.5rem 1.5rem; }
      .story-title { font-size: 22px; }

      /* Timeline */
      .qs-timeline { padding: 3.5rem 1.5rem; }
      .tl-event { font-size: 15px; }

      /* Valores + Equipe */
      .qs-bottom { grid-template-columns: 1fr; }
      .valores-block { padding: 3rem 1.5rem; }
      .equipe-block { padding: 3rem 1.5rem; border-left: none; border-top: 1px solid rgba(200,150,12,0.15); }
      .equipe-grid { grid-template-columns: 1fr 1fr; }

      /* OSC Banner */
      .osc-banner { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; }
      .osc-text p { max-width: 100%; }
      .osc-badge { width: 100%; justify-content: center; }

      /* MVV Section */
      .mvv-section { padding: 4rem 1.5rem 0; }
      .mvv-header { margin-bottom: 3rem; }
      .mvv-title { font-size: 28px; }
      .mvv-subtitle { font-size: 17px; }

      /* Missão + Visão */
      .mv-grid { grid-template-columns: 1fr; gap: 3px; }
      .mv-card { padding: 2.5rem 1.8rem; }
      .mv-card-title { font-size: 22px; }
      .mv-card-text { font-size: 14px; }

      /* Valores grid */
      .valores-section { padding: 3rem 1.5rem 4rem; }
      .valores-head { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
      .valores-head-desc { text-align: left; max-width: 100%; font-size: 15px; }
      .valores-head-title { font-size: 26px; }
      .valores-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
      .valor-card { padding: 1.4rem 1.2rem; }
      .valor-card-name { font-size: 14px; }
      .valor-card-num { font-size: 32px; }

      /* Faixa final */
      .mvv-closing { padding: 3.5rem 1.5rem; }
      .closing-text { font-size: 20px; }
      .mvv-closing::before { font-size: 160px; }

      /* Desligar reveal--left e reveal--right no mobile (evita overflow) */
      .reveal.reveal--left,
      .reveal.reveal--right,
      .sr--left,
      .sr--right {
        transform: translateY(28px);
      }
    }

    /* ── MOBILE PEQUENO (até 400px) ── */
    @media (max-width: 400px) {
      .hero-title { font-size: 28px; }
      .valores-grid { grid-template-columns: 1fr; }
      .equipe-grid { grid-template-columns: 1fr; }
      .logo-tag { display: none; }
      .logo-divider { display: none; }
    }

    /* ═══════════════════════════════════════
   NOSSO ESPAÇO — ESTEIRA INFINITA
═══════════════════════════════════════ */
.espaco-section {
  background: var(--cream);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.espaco-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.espaco-title {
  font-family: 'Lora', serif;
  font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 0.9rem;
}
.espaco-title em { font-style: italic; color: var(--gold); }

.espaco-sub {
  font-family: 'Lora', serif;
  font-size: 17px; font-style: italic;
  color: #7a8099; line-height: 1.7;
}

/* Faixa da esteira */
.espaco-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Degrade nas bordas para suavizar entrada/saída */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.espaco-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: esteira 40s linear infinite;
}

/* Pausa ao passar o mouse */
.espaco-strip:hover .espaco-track {
  animation-play-state: paused;
}

@keyframes esteira {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.espaco-slide {
  flex-shrink: 0;
  width: 380px;
}

.espaco-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(26,36,114,0.1);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.espaco-slide img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(26,36,114,0.18);
}

/* Botão CTA */
.espaco-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-espaco {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--navy); color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border-radius: 8px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, color .3s;
  box-shadow: 0 4px 18px rgba(26,36,114,0.2);
}
.btn-espaco::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 0;
}
.btn-espaco:hover::before { transform: translateX(0); }
.btn-espaco:hover { color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,150,12,0.3); }
.btn-espaco i, .btn-espaco span { position: relative; z-index: 1; }
.btn-espaco i:last-child { transition: transform .3s; }
.btn-espaco:hover i:last-child { transform: translateX(4px); }

/* Mobile */
@media (max-width: 768px) {
  .espaco-section { padding: 4rem 0 3.5rem; }
  .espaco-title { font-size: 28px; }
  .espaco-sub { font-size: 15px; }
  .espaco-slide { width: 260px; }
  .espaco-slide img { height: 200px; }
  .espaco-track { animation-duration: 28s; }
}
/* ═══════════════════════════════════════
   NOSSOS SERVIÇOS
═══════════════════════════════════════ */
.servicos-section {
  background: #fff;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.servicos-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,36,114,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.servicos-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  position: relative; z-index: 1;
}
.servicos-title {
  font-family: 'Lora', serif;
  font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 0.9rem;
}
.servicos-title em { font-style: italic; color: var(--gold); }
.servicos-sub {
  font-family: 'Lora', serif;
  font-size: 17px; font-style: italic;
  color: #7a8099; line-height: 1.7;
}

/* Grid dos cards */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.servico-card {
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid rgba(26,36,114,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  position: relative;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,36,114,0.11);
}

/* Topo colorido do card */
.servico-card-top {
  background: var(--navy-dark);
  padding: 2.2rem 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.servico-card-top::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,12,0.12);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.servico-card--abrigo .servico-card-top {
  background: var(--navy);
}

.servico-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 20px;
  margin-bottom: 1.4rem;
  transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s;
}
.servico-card:hover .servico-card-icon {
  background: rgba(200,150,12,0.28);
  transform: rotate(-6deg) scale(1.08);
}

.servico-card-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.5rem; display: block;
}
.servico-card-name {
  font-family: 'Lora', serif;
  font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.25;
}

/* Corpo do card */
.servico-card-body {
  padding: 1.8rem 2.2rem 2.2rem;
  display: flex; flex-direction: column; flex: 1;
}
.servico-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 14.5px; color: #5a6078;
  line-height: 1.8; margin-bottom: 1.8rem;
}

/* Bloco de endereço */
.servico-endereco {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(26,36,114,0.08);
  padding: 1.2rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: auto;
}
.servico-endereco-title {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 6px;
}
.servico-endereco-title i { font-size: 10px; }
.servico-endereco-line {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; color: #4a5068; line-height: 1.6;
  display: flex; align-items: flex-start; gap: 8px;
}
.servico-endereco-line i {
  color: var(--gold); font-size: 11px; margin-top: 3px; flex-shrink: 0;
}

/* Botão ver no mapa */
.servico-mapa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 1rem;
  padding: 9px 18px;
  background: var(--navy);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 8px;
  align-self: flex-start;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, color .3s;
  box-shadow: 0 2px 10px rgba(26,36,114,0.15);
}
.servico-mapa-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); z-index: 0;
}
.servico-mapa-btn:hover::before { transform: translateX(0); }
.servico-mapa-btn:hover { color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,150,12,0.25); }
.servico-mapa-btn i, .servico-mapa-btn span { position: relative; z-index: 1; }

/* Mobile */
@media (max-width: 768px) {
  .servicos-section { padding: 4rem 1.5rem; }
  .servicos-title { font-size: 28px; }
  .servicos-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .servico-card-name { font-size: 20px; }
}
/* ═══════════════════════════════════════
   NOSSAS ATIVIDADES
═══════════════════════════════════════ */
.atividades-section {
  background: var(--navy-dark);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.atividades-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(200,150,12,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.atividades-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  position: relative; z-index: 1;
}
.atividades-title {
  font-family: 'Lora', serif;
  font-size: 42px; font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 0.9rem;
}
.atividades-title em { font-style: italic; color: var(--gold); }
.atividades-sub {
  font-family: 'Lora', serif;
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* Grid de reels */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.reel-card {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 9/16;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  cursor: pointer;
}
.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 52px rgba(0,0,0,0.5);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay sutil no hover */
.reel-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,60,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.reel-card:hover::after { opacity: 1; }

/* CTA Instagram */
.atividades-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative; z-index: 1;
}
.atividades-cta-text {
  font-family: 'Lora', serif;
  font-size: 22px; font-weight: 600;
  color: #fff; margin-bottom: 0.5rem;
}
.atividades-cta-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.45);
  margin-bottom: 1.8rem; line-height: 1.6;
}
.btn-instagram {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border-radius: 50px;
  transition: transform .25s, box-shadow .25s, filter .25s;
  box-shadow: 0 4px 20px rgba(221,42,123,0.35);
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(221,42,123,0.5);
  filter: brightness(1.08);
}
.btn-instagram i { font-size: 16px; }

/* Mobile */
@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .atividades-section { padding: 4rem 1.5rem; }
  .atividades-title { font-size: 28px; }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .atividades-cta-text { font-size: 18px; }
}
@media (max-width: 480px) {
  .activities-grid { grid-template-columns: 1fr 1fr; }
}
/* ═══════════════════════════════════════
   PORTAL DA TRANSPARÊNCIA
═══════════════════════════════════════ */
.transparencia-section {
  background: var(--cream);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.transparencia-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,36,114,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.transparencia-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}
.transparencia-title {
  font-family: 'Lora', serif;
  font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 0.9rem;
}
.transparencia-title em { font-style: italic; color: var(--gold); }
.transparencia-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 15px; color: #7a8099; line-height: 1.7;
}

.transparencia-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* Abas */
.doc-categories {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.category-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: #fff;
  border: 1.5px solid rgba(26,36,114,0.1);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #5a6078;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.category-btn i { font-size: 12px; color: var(--gold); transition: transform .3s; }
.category-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,36,114,0.1);
}
.category-btn:hover i { transform: scale(1.2); }
.category-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,36,114,0.2);
}
.category-btn.active i { color: var(--gold-light); }

/* Conteúdo das categorias */
.category-content { display: none; }
.category-content.active { display: block; }

/* Grid de documentos */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.doc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(26,36,114,0.08);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
}
.doc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,150,12,0) 0%, rgba(200,150,12,0.05) 100%);
  opacity: 0; transition: opacity .3s;
}
.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26,36,114,0.1);
  border-color: rgba(200,150,12,0.3);
}
.doc-card:hover::before { opacity: 1; }

.doc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 18px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s;
  position: relative; z-index: 1;
}
.doc-card:hover .doc-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--navy-mid);
}

.doc-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: var(--navy); line-height: 1.45;
  position: relative; z-index: 1;
  flex: 1;
}

.doc-card-footer {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  position: relative; z-index: 1;
  transition: gap .25s;
}
.doc-card:hover .doc-card-footer { gap: 10px; }
.doc-card-footer i { font-size: 10px; }

/* Estado vazio */
.doc-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #9aa2c8;
}
.doc-empty i { font-size: 40px; margin-bottom: 1rem; display: block; color: rgba(26,36,114,0.15); }
.doc-empty p { font-family: 'Nunito', sans-serif; font-size: 14px; }

/* Mobile */
@media (max-width: 768px) {
  .transparencia-section { padding: 4rem 1.5rem; }
  .transparencia-title { font-size: 28px; }
  .documents-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .doc-card { padding: 1.3rem 1.1rem; }
}
@media (max-width: 480px) {
  .documents-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   CONTATO
═══════════════════════════════════════ */
.contato-section {
  background: #fff;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.contato-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,36,114,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.contato-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 4rem;
  position: relative; z-index: 1;
}
.contato-title {
  font-family: 'Lora', serif;
  font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 0.8rem;
}
.contato-title em { font-style: italic; color: var(--gold); }
.contato-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 15px; color: #7a8099; line-height: 1.7;
}

.contato-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Redes sociais */
.telse-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.telse-social-card {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, filter .3s;
  position: relative; overflow: hidden;
}
.telse-social-card i { font-size: 22px; }
.telse-social-card span { position: relative; z-index: 1; }
.telse-social-card i { position: relative; z-index: 1; }
.telse-social-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.telse-facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24,119,242,0.3);
}
.telse-facebook:hover { box-shadow: 0 10px 30px rgba(24,119,242,0.5); }

.telse-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(221,42,123,0.3);
}
.telse-instagram:hover { box-shadow: 0 10px 30px rgba(221,42,123,0.5); }

/* Grid de contatos */
.telse-contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.telse-location-group {
  background: var(--cream);
  border: 1px solid rgba(26,36,114,0.08);
  border-radius: 18px;
  padding: 1.8rem;
  transition: background .3s, border-color .3s;
}
.telse-location-group:hover {
  background: #f0f2f9;
  border-color: rgba(200,150,12,0.2);
}
.telse-location-title {
  font-family: 'Lora', serif;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 8px;
}
.telse-location-title i { font-size: 12px; }

.telse-contact-items {
  display: flex; flex-direction: column; gap: 0.8rem;
}

.telse-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(26,36,114,0.07);
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.telse-contact-item:hover {
  background: #f0f2f9;
  border-color: rgba(200,150,12,0.25);
  transform: translateX(4px);
}


.telse-contact-item > i {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(200,150,12,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 15px;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.telse-contact-item:hover > i {
  background: rgba(200,150,12,0.25);
  transform: scale(1.1);
}

.telse-contact-info {
  display: flex; flex-direction: column; gap: 2px;
}
.telse-contact-label {
  font-family: 'Nunito', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #9aa2c8;
}
.telse-contact-value {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
}

/* Mobile */
@media (max-width: 768px) {
  .contato-section { padding: 4rem 1.5rem; }
  .contato-title { font-size: 28px; }
  .telse-social-grid { grid-template-columns: 1fr 1fr; }
  .telse-contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .telse-social-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #060c2e;
  padding: 4rem 3rem 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.footer-logo-wrap {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; margin-bottom: 2.5rem;
}
.footer-logo-img {
  height: 48px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
  transition: filter .3s;
}
.footer-logo-wrap:hover .footer-logo-img { opacity: 1; }.footer-logo-divider {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-name {
  font-family: 'Lora', serif;
  font-size: 15px; font-weight: 600; color: #fff;
  letter-spacing: 0.015em; line-height: 1;
}
.footer-logo-tag {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 10.5px; letter-spacing: 0.16em; color: var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-section h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px;
}
.footer-section h3::after {
  content: '';
  display: inline-block; flex: 1;
  height: 1px; background: rgba(200,150,12,0.2);
}

.footer-section p {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.9; margin: 0;
}
.footer-section p strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Linha final */
.footer-bottom {
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}

.footer-bottom-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

.footer-dev {
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: color .25s;
}
.footer-dev:hover { color: var(--gold-light); }
.footer-dev strong {
  font-weight: 700; color: rgba(255,255,255,0.45);
  transition: color .25s;
}
.footer-dev:hover strong { color: var(--gold); }
.footer-dev-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .footer { padding: 3rem 1.5rem 0; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ═══════════════════════════════════════
   BOTÃO FLUTUANTE REDES SOCIAIS
═══════════════════════════════════════ */
.fab-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.fab-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
}
.fab-wrap.open .fab-links {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.fab-link:hover { transform: translateX(-4px); }

.fab-link-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  color: #1a2472;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
}
.fab-wrap.open .fab-link-label {
  opacity: 1;
  transform: translateX(0);
}
.fab-wrap.open .fab-link:nth-child(1) .fab-link-label { transition-delay: .05s; }
.fab-wrap.open .fab-link:nth-child(2) .fab-link-label { transition-delay: .1s; }
.fab-wrap.open .fab-link:nth-child(3) .fab-link-label { transition-delay: .15s; }

.fab-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
}
.fab-link:hover .fab-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.fab-icon--whatsapp  { background: #25d366; }
.fab-icon--facebook  { background: #1877f2; }
.fab-icon--instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

/* Botão principal */
.fab-main {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: 0 4px 20px rgba(26,36,114,0.35);
  transition: background .3s, transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  position: relative;
  flex-shrink: 0;
}
.fab-main:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(200,150,12,0.4);
}
.fab-main i {
  position: absolute;
  transition: opacity .25s, transform .25s;
}
.fab-main .icon-open  { opacity: 1;  transform: rotate(0deg); }
.fab-main .icon-close { opacity: 0;  transform: rotate(-90deg); }
.fab-wrap.open .fab-main .icon-open  { opacity: 0;  transform: rotate(90deg); }
.fab-wrap.open .fab-main .icon-close { opacity: 1;  transform: rotate(0deg); }
.fab-wrap.open .fab-main {
  background: #e74c3c;
  box-shadow: 0 8px 24px rgba(231,76,60,0.35);
}

/* Pulso no botão principal */
.fab-main::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26,36,114,0.25);
  animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-wrap.open .fab-main::after { display: none; }
@keyframes fabPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 768px) {
  .fab-wrap { bottom: 1.2rem; right: 1.2rem; }
  .fab-link-label { display: none; }
  .fab-icon { width: 40px; height: 40px; font-size: 16px; }
  .fab-main { width: 48px; height: 48px; font-size: 18px; }
}