    :root {
      --azul: #08005c;
      --azul-2: #17118a;
      --azul-profundo: #040033;
      --azul-claro: #edf5ff;
      --verde: #1f8f52;
      --verde-2: #167240;
      --amarelo: #f3d300;
      --texto: #1c2430;
      --muted: #64748b;
      --borda: #dbe4ef;
      --fundo: #f7fbff;
      --branco: #ffffff;
      --sombra: 0 18px 45px rgba(15, 35, 60, .12);
      --radius: 22px;
      --max: 1160px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--texto);
      background: var(--fundo);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .nav .wrap, section .wrap, footer .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(8, 0, 92, .97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 10px 28px rgba(4, 0, 51, .18);
    }

    .nav .wrap {
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 0;
      flex: 0 1 auto;
    }

    .brand-logo {
      width: 245px;
      max-width: min(42vw, 245px);
      height: auto;
      background: #fff;
      border-radius: 16px;
      padding: 8px 12px;
      box-shadow: 0 10px 26px rgba(0,0,0,.18);
    }

    .menu {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      flex: 1 1 auto;
      min-width: 0;
      flex-wrap: nowrap;
      overflow: hidden;
    }

    .menu a {
      padding: 10px 12px;
      border-radius: 999px;
      color: #fff;
      font-weight: 800;
      font-size: 15px;
      line-height: 1;
      white-space: nowrap;
      opacity: .96;
      transition: background .18s ease, color .18s ease, opacity .18s ease;
    }

    .menu a:hover {
      background: rgba(255,255,255,.12);
      color: #fff;
      opacity: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 18px;
      border-radius: 999px;
      background: var(--azul);
      color: #fff;
      font-weight: 900;
      border: 0;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(11,49,95,.18);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(11,49,95,.25);
    }

    .btn.hero-primary {
      background: var(--verde);
      color: #fff;
      box-shadow: 0 16px 40px rgba(31,143,82,.28);
    }

    .btn.hero-primary:hover { background: var(--verde-2); }

    .btn.secondary {
      background: var(--verde);
      color: #fff;
      border: 0;
      box-shadow: 0 16px 40px rgba(31,143,82,.28);
    }

    .btn.secondary:hover { background: var(--verde-2); }

    .btn.light {
      background: #fff;
      color: var(--azul);
      border: 1px solid var(--borda);
      box-shadow: none;
    }

    .btn.light:hover { background: var(--azul-claro); }

    .hamb {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.10);
      border-radius: 12px;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .hamb span {
      display: block;
      width: 20px;
      height: 2px;
      background: #fff;
      margin: 5px auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 720px;
      background:
        linear-gradient(90deg, rgba(4,0,51,.62) 0%, rgba(8,0,92,.44) 34%, rgba(8,0,92,.16) 62%, rgba(4,0,51,.06) 100%),
        url('cristo-abemec-rj.png') center center / cover no-repeat;
      color: #fff;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
      pointer-events: none;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 9px;
      background: linear-gradient(90deg, var(--azul), var(--verde), var(--amarelo));
      z-index: 2;
    }

    .hero .wrap {
      min-height: 650px;
      display: grid;
      grid-template-columns: minmax(0, .98fr) minmax(250px, .70fr);
      gap: 42px;
      align-items: center;
      padding-top: 72px;
      padding-bottom: 72px;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      position: relative;
      z-index: 3;
      max-width: 700px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.26);
      color: #fff;
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    h1 {
      margin: 18px 0 16px;
      color: #fff;
      font-size: clamp(36px, 5.6vw, 60px);
      line-height: .98;
      letter-spacing: -1.8px;
      text-shadow: 0 10px 28px rgba(0,0,0,.20);
    }

    .hero p {
      font-size: 19px;
      color: rgba(255,255,255,.94);
      max-width: 660px;
      margin: 0 0 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 24px;
      position: relative;
      z-index: 4;
    }

    .hero-visual {
      min-height: 470px;
      position: relative;
    }

    .gear-cluster {
      position: absolute;
      top: 18px;
      right: 26px;
      width: 390px;
      height: 235px;
      z-index: 3;
      pointer-events: none;
      --d1: 72px;
      --d2: calc(var(--d1) * 1.5);
      --d3: calc(var(--d1) * 3);
    }

    .gear-wrap {
      position: absolute;
      filter:
        drop-shadow(0 10px 18px rgba(4,0,51,.14))
        drop-shadow(0 0 12px rgba(243,211,0,.08));
    }

    .gear-wrap svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .gear {
      transform-origin: 50% 50%;
      transform-box: fill-box;
    }

    .gear-blue-wrap {
      width: var(--d1);
      height: var(--d1);
      left: 22px;
      top: 88px;
    }

    .gear-green-wrap {
      width: var(--d2);
      height: var(--d2);
      left: 80px;
      top: 22px;
    }

    .gear-yellow-wrap {
      width: var(--d3);
      height: var(--d3);
      left: 186px;
      top: -18px;
    }

    .gear-blue {
      color: #08005c;
      animation: spinCW 12s linear infinite;
    }

    .gear-green {
      color: #00c853;
      animation: spinCCW 18s linear infinite;
    }

    .gear-yellow {
      color: #f3d300;
      animation: spinCW 36s linear infinite;
    }

    .cristo-light {
      position: absolute;
      top: -420px;
      right: -170px;
      width: 1120px;
      height: 1120px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,251,214,.42) 0%, rgba(243,211,0,.24) 16%, rgba(243,211,0,.12) 34%, rgba(243,211,0,.05) 52%, rgba(243,211,0,0) 74%);
      filter: blur(10px);
      opacity: .92;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 1;
    }

    .cristo-light::before {
      content: "";
      position: absolute;
      width: 960px;
      height: 960px;
      left: -250px;
      top: 110px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(243,211,0,.08) 0%, rgba(243,211,0,.04) 36%, rgba(243,211,0,0) 72%);
      filter: blur(26px);
    }

    .cristo-light::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.12) 0%, rgba(255,255,255,.035) 16%, rgba(255,255,255,0) 34%);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .stat {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 18px;
      padding: 16px;
      backdrop-filter: blur(8px);
    }

    .stat strong { color: #fff; font-size: 25px; display: block; }
    .stat span { color: rgba(255,255,255,.78); font-size: 13px; }

    section { padding: 86px 0; }

    .section-head {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 34px;
    }

    .eyebrow {
      color: var(--azul-2);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 13px;
      margin-bottom: 10px;
    }

    h2 {
      margin: 0;
      color: var(--azul);
      font-size: clamp(29px, 3.8vw, 45px);
      line-height: 1.08;
      letter-spacing: -1px;
    }

    .lead {
      color: var(--muted);
      font-size: 18px;
      margin: 0;
    }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

    .card {
      background: #fff;
      border: 1px solid var(--borda);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 10px 30px rgba(15,35,60,.06);
    }

    .card h3 { color: var(--azul); font-size: 21px; margin: 0 0 10px; }
    .card p, .card li { color: #475569; }
    .card ul { margin: 14px 0 0; padding-left: 20px; }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--azul-claro);
      color: var(--azul);
      display: grid;
      place-items: center;
      font-size: 23px;
      margin-bottom: 16px;
    }

    .quote {
      background: linear-gradient(135deg, #fff, #f8fbff);
      border-left: 6px solid var(--amarelo);
      font-size: 21px;
      color: #27364a;
    }

    .quote cite {
      display: block;
      color: var(--muted);
      font-size: 15px;
      margin-top: 12px;
      font-style: normal;
      font-weight: 800;
    }

    .associe, .events { background: #fff; }
    #natureza, #sobre, #parceiros, #contato { background: var(--fundo); }

    .price-card { position: relative; overflow: hidden; }
    .price-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 7px;
      background: linear-gradient(90deg, var(--azul), var(--verde), var(--amarelo));
    }

    .tag {
      display: inline-block;
      border-radius: 999px;
      padding: 6px 10px;
      background: var(--azul-claro);
      color: var(--azul);
      font-weight: 900;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 14px;
    }

    .video-card { overflow: hidden; padding: 0; }

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0f172a;
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-body { padding: 22px; }

    .natureza-videos { margin-top: 26px; }

    .partner-spotlight {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
    }

    .partner-carousel {
      position: relative;
      overflow: hidden;
      min-height: 100%;
    }

    .partner-slides { display: grid; }

    .partner-slide {
      grid-area: 1 / 1;
      height: 100%;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }

    .partner-slide.active {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }

    .partner-logo-box {
      min-height: 190px;
      border-radius: 20px;
      background:
        linear-gradient(135deg, rgba(8,0,92,.08), rgba(31,143,82,.08)),
        #f8fbff;
      border: 1px solid var(--borda);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 24px;
      margin-bottom: 18px;
    }

    .partner-logo-box strong {
      color: var(--azul);
      font-size: 26px;
      line-height: 1.15;
    }

    .partner-logo-box span {
      display: block;
      color: var(--muted);
      font-weight: 700;
      margin-top: 8px;
      font-size: 14px;
    }

    .partner-logo-box img {
      max-width: 210px;
      max-height: 140px;
      object-fit: contain;
      border-radius: 12px;
    }

    .partner-dots {
      display: flex;
      gap: 8px;
      margin-top: 18px;
      align-items: center;
    }

    .partner-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      background: rgba(8,0,92,.22);
      cursor: pointer;
      padding: 0;
    }

    .partner-dot.active {
      width: 24px;
      background: var(--verde);
    }

    .event-card {
      display: grid;
      grid-template-columns: 88px 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .event-card-body { min-width: 0; }

    .datebox {
      width: 88px;
      min-height: 88px;
      border-radius: 20px;
      background: var(--azul);
      color: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 10px;
    }

    .datebox strong { font-size: 24px; line-height: 1; display: block; }
    .datebox span { font-size: 12px; opacity: .9; text-transform: uppercase; }

    .events-lista { display: flex; flex-direction: column; gap: 18px; }

    .event-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .event-logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 12px;
      background: #fff;
      border: 1px solid var(--borda);
      padding: 5px;
      box-shadow: 0 6px 16px rgba(15,35,60,.08);
    }

    .event-logo-grande {
      width: 88px;
      height: 88px;
      object-fit: contain;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--borda);
      padding: 10px;
      box-shadow: 0 8px 20px rgba(15,35,60,.10);
      justify-self: end;
    }

    .tag-verde { background: rgba(31,143,82,.12); color: var(--verde-2); }
    .tag-amarelo { background: rgba(243,211,0,.20); color: #8a7600; }

    .event-hora {
      color: var(--azul-2);
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin: 0 0 8px;
    }

    .event-card-click {
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .event-card-click:hover,
    .event-card-click:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(15,35,60,.12);
      border-color: rgba(8,0,92,.22);
    }

    .event-card-click:focus-visible { outline: 2px solid var(--azul-2); outline-offset: 2px; }

    .event-card-hint {
      display: inline-block;
      margin-top: 4px;
      color: var(--azul-2);
      font-weight: 800;
      font-size: 13px;
    }

    .event-cta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--azul);
      font-weight: 900;
      font-size: 16px;
      transition: background .18s ease, transform .18s ease;
    }

    .event-cta-card:hover {
      background: var(--azul-claro);
      transform: translateY(-2px);
    }

    .event-modal {
      width: min(520px, calc(100vw - 40px));
      max-height: calc(100vh - 60px);
      overflow-y: auto;
      border: 1px solid var(--borda);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--sombra);
      background: #fff;
    }

    .event-modal::backdrop {
      background: rgba(4, 0, 51, .55);
      backdrop-filter: blur(2px);
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid var(--borda);
      background: #fff;
      color: var(--azul);
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
    }

    .modal-close:hover { background: var(--azul-claro); }

    .filtros-agenda {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 14px;
    }

    .filtro-pill {
      border: 1px solid var(--borda);
      background: #fff;
      color: var(--azul);
      font-weight: 800;
      font-size: 13px;
      padding: 9px 16px;
      border-radius: 999px;
      cursor: pointer;
      transition: background .18s ease, color .18s ease, border-color .18s ease;
    }

    .filtro-pill:hover { background: var(--azul-claro); }

    .filtro-pill.active {
      background: var(--azul);
      color: #fff;
      border-color: var(--azul);
    }

    .agenda-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 18px;
    }

    .contact-strip {
      background: #fff;
      color: var(--texto);
      border: 1px solid var(--borda);
      border-radius: 30px;
      padding: 34px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      box-shadow: var(--sombra);
      position: relative;
      overflow: hidden;
    }

    .contact-strip::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 8px;
      background: linear-gradient(90deg, var(--azul), var(--verde), var(--amarelo));
    }

    .contact-strip h2 { color: var(--azul); }
    .contact-strip p { color: var(--muted); margin: 10px 0 0; }

    footer {
      background: var(--azul);
      color: #fff;
      padding: 44px 0;
    }

    footer .wrap {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
    }

    footer strong { color: #fff; }

    .footer-logo {
      width: 280px;
      max-width: 100%;
      background: #fff;
      border-radius: 14px;
      padding: 10px 14px;
      margin-bottom: 14px;
    }

    .socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .socials a {
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      padding: 9px 12px;
      color: #fff;
      font-weight: 800;
      font-size: 13px;
    }

    .social-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 16px;
      border-radius: 999px;
      border: 1px solid var(--borda);
      background: #fff;
      color: var(--azul);
      font-weight: 900;
      box-shadow: 0 8px 20px rgba(8, 0, 92, .06);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .social-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(8, 0, 92, .30);
      background: var(--azul-claro);
    }

    .backtop {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      background: var(--azul);
      color: #fff;
      border: 0;
      box-shadow: var(--sombra);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: .2s ease;
      font-size: 30px;
      font-weight: 800;
      line-height: 46px;
      text-align: center;
      padding: 0;
      z-index: 40;
    }

    .backtop.show { opacity: 1; pointer-events: auto; }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .75s ease, transform .75s ease;
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.delay-1 { transition-delay: .08s; }
    .reveal.delay-2 { transition-delay: .16s; }

    @keyframes spinCW { to { transform: rotate(360deg); } }
    @keyframes spinCCW { to { transform: rotate(-360deg); } }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .gear { animation: none; }
    }

    @media (max-width: 1080px) {
      .menu a { font-size: 14px; padding: 10px 10px; }
      .brand-logo { width: 225px; max-width: min(40vw, 225px); }
    }

    @media (max-width: 960px) {
      .hero .wrap,
      .section-head,
      .grid-2,
      .contact-strip,
      footer .wrap,
      .partner-spotlight {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(4,0,51,.74) 0%, rgba(8,0,92,.48) 58%, rgba(8,0,92,.18) 100%),
          url('cristo-abemec-rj.png') center center / cover no-repeat;
      }

      .hero .wrap { min-height: auto; }
      .hero-visual { min-height: 250px; }
      .gear-cluster {
        top: 8px;
        right: 8px;
        width: 270px;
        height: 175px;
        --d1: 44px;
        --d2: calc(var(--d1) * 1.5);
        --d3: calc(var(--d1) * 3);
      }
      .gear-blue-wrap { left: 12px; top: 74px; }
      .gear-green-wrap { left: 46px; top: 26px; }
      .gear-yellow-wrap { left: 110px; top: -10px; }
      .cristo-light {
        top: -250px;
        right: -230px;
        width: 880px;
        height: 880px;
      }
      .cristo-light::before {
        width: 760px;
        height: 760px;
        left: -180px;
        top: 100px;
      }
    }

    @media (max-width: 860px) {
      .hamb { display: block; }
      .brand-logo { width: 210px; max-width: 58vw; }
      .menu {
        position: absolute;
        left: 22px;
        right: 22px;
        top: 94px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--azul);
        padding: 12px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 18px;
        box-shadow: var(--sombra);
        overflow: visible;
      }

      .menu.open { display: flex; }
      .menu a {
        border-radius: 12px;
        font-size: 15px;
        padding: 12px 14px;
      }

      .hero-copy { max-width: none; }
      .grid-3 { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr; }
      section { padding: 64px 0; }
      .contact-strip { padding: 26px; }
      .socials { justify-content: flex-start; }

      .event-card {
        grid-template-columns: 64px 1fr;
        gap: 12px;
      }

      .event-logo-grande {
        grid-column: 1 / -1;
        justify-self: start;
        width: 56px;
        height: 56px;
        margin-top: 8px;
      }
    }
