:root {
      --bg: #000;
      --text: #f1f1f1;
      --muted: #a8a8a8;
      --line: rgba(255,255,255,0.12);
      --accent: #b30000;
      --max: 1280px;
      --radius: 14px;
      --shadow: 0 24px 52px rgba(0,0,0,.45);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: #000;
      color: var(--text);
      font-family: 'Sora', sans-serif;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    .container { max-width: var(--max); margin: 0 auto; padding: 0 26px; }

    .nav-wrap {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: linear-gradient(to bottom, rgba(8,12,18,.42), rgba(8,12,18,.08) 72%, rgba(8,12,18,0));
      backdrop-filter: blur(4px);
      transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
    }

    .nav-wrap.is-scrolled {
      background: linear-gradient(to bottom, rgba(8,12,18,.84), rgba(8,12,18,.52));
      backdrop-filter: blur(10px);
    }

    .navbar {
      min-height: 92px;
      display: grid;
      grid-template-columns: 76px 1fr auto;
      align-items: center;
      gap: 24px;
    }

    .brand { display:flex; align-items:center; }
    .brand img { width: 76px; height: 76px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.28)); }

    .nav-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      color: #fff;
      align-items: center;
      justify-content: center;
      gap: 5px;
      flex-direction: column;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .22s ease, opacity .22s ease;
    }

    .menu {
      margin: 0;
    }

    .menu-panel {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .menu a {
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .75px;
      color: rgba(245,248,252,.94);
      font-weight: 700;
      opacity: .92;
    }

    .menu a:hover { opacity: 1; }

    .account-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.5);
      background: rgba(255,255,255,.06);
      color: #fff;
      font-weight: 800;
      justify-self: end;
      transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      justify-self: end;
    }

    .account-cta svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .account-cta:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
      box-shadow: 0 10px 26px rgba(255,255,255,.16);
    }

    .account-cta-admin {
      border-color: rgba(179, 0, 0, .48);
      background: rgba(179, 0, 0, .14);
    }

    .account-cta-admin:hover {
      background: #b30000;
      color: #fff;
      border-color: #b30000;
      box-shadow: 0 10px 26px rgba(179, 0, 0, .24);
    }

    .account-cta-mobile {
      display: none;
    }

    @media (max-width: 860px) {
      .container {
        padding: 0 18px;
      }

      .navbar {
        grid-template-columns: 1fr auto;
        min-height: 84px;
        gap: 12px;
      }

      .brand {
        justify-self: start;
        padding-left: 10px;
      }

      .brand img {
        width: 60px;
        height: 60px;
      }

      .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        justify-self: end;
      }

      .menu {
        position: fixed;
        inset: 84px 16px auto 16px;
        display: block;
        pointer-events: none;
        margin: 0;
      }

      .menu-panel {
        display: grid;
        gap: 10px;
        padding: 16px;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(8,12,18,.96);
        box-shadow: 0 24px 52px rgba(0,0,0,.34);
        transform: translateY(-8px);
        opacity: 0;
        transition: opacity .2s ease, transform .2s ease;
      }

      .nav-wrap.is-menu-open .menu {
        pointer-events: auto;
      }

      .nav-wrap.is-menu-open .menu-panel {
        opacity: 1;
        transform: translateY(0);
      }

      .nav-wrap.is-menu-open {
        background: linear-gradient(to bottom, rgba(8,12,18,.96), rgba(8,12,18,.84));
        backdrop-filter: blur(12px);
      }

      .menu a {
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.03);
        text-align: left;
      }

      .nav-actions {
        display: none;
      }

      .account-cta-mobile {
        display: inline-flex;
        justify-content: center;
        margin-top: 6px;
      }

      .nav-wrap.is-menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-wrap.is-menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }

      .nav-wrap.is-menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }

    .hero {
      position: relative;
      min-height: 112vh;
      padding-top: 130px;
      padding-bottom: 0;
      overflow: visible;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 -220px 0;
      background: linear-gradient(to bottom, rgb(0 0 0 / 73%) 0%, rgb(10 24 38 / 0%) 22%, rgb(7 10 16 / 0%) 52%, rgb(0 0 0 / 0%) 100%), url(imagens/7.jpg) center top / 100% auto no-repeat;
      z-index: -2;
  }

    .hero-bottom-shadow {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 180px;
      height: 140px;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 58%,
        #000 100%
      );
      pointer-events: none;
      z-index: 1;
    }

    .hero-bottom-shadow::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: #000;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 150px;
      height: 6px;
      background: #000;
      box-shadow: 0 0 28px rgba(0, 0, 0, 0.95);
      pointer-events: none;
      z-index: 11;
    }





    .hero-content {
      min-height: 78vh;
      display: flex;
      align-items: flex-end;
      padding-bottom: 140px;
    }

    .hero-main { max-width: 760px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: 1.7px;
      font-weight: 700;
      color: #ffd8bd;
      margin-bottom: 10px;
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 2px;
      background: var(--accent-soft);
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 9vw, 7.8rem);
      letter-spacing: 1px;
      line-height: .88;
      margin-bottom: 18px;
      text-wrap: balance;
      text-shadow: 0 18px 42px rgba(0,0,0,.32);
    }

    .hero-main p {
      color: #edf2f8;
      font-size: 1.06rem;
      max-width: 620px;
      margin-bottom: 22px;
    }

    .hero-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      margin-bottom: 22px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      background: rgba(0,0,0,.28);
      color: #f2ddd2;
      font-size: .82rem;
      letter-spacing: .2px;
    }

    .hero-note::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-soft);
      box-shadow: 0 0 14px rgba(240,165,91,.55);
      flex: 0 0 auto;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: rgba(255,255,255,.9);
      font-size: .9rem;
      font-weight: 800;
      letter-spacing: .6px;
      text-transform: uppercase;
    }

    .hero-kicker::before {
      content: "";
      width: 44px;
      height: 2px;
      background: rgba(255,255,255,.72);
    }

    .row { display: flex; flex-wrap: wrap; gap: 14px; }

    .btn {
      min-height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .8px;
      border: 1px solid rgba(255,255,255,.48);
      background: rgba(255,255,255,.05);
      color: #fff;
      transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    .btn-secondary {
      background: rgba(8,12,20,.18);
      color: #fff;
    }

    .btn:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(255,255,255,.12);
    }

    .news-overlap {
      position: relative;
      z-index: 12;
      margin-top: 24px;
      margin-bottom: -180px;
      padding: 18px 0 8px;
    }

    .news-shell {
      padding: 18px;
      border-radius: 22px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1.7fr 1fr;
      gap: 18px;
    }

    .news-featured {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.07);
      background: rgba(5,5,5,.36);
      box-shadow: 0 24px 54px rgba(0,0,0,.34);
    }

    .news-featured img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      background: #000;
    }

    .news-featured .body { padding: 16px; }
    .meta {
      color: #d6d6d6;
      text-transform: uppercase;
      font-size: .74rem;
      letter-spacing: .7px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .news-featured h2 {
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 8px;
      text-wrap: balance;
    }

    .news-featured p { color: var(--muted); font-size: .94rem; }

    .news-side { display: flex; flex-direction: column; gap: 14px; }

    .news-item {
      display: grid;
      grid-template-columns: 118px 1fr;
      gap: 12px;
      background: rgba(6,6,6,.34);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 14px 30px rgba(0,0,0,.24);
    }

    .news-item img {
      width: 118px;
      height: 118px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
    }

    .news-item h4 { font-size: 1.05rem; line-height: 1.24; margin-bottom: 6px; }
    .date { color: #9d9d9d; font-size: .82rem; }

    section {
      position: relative;
      padding: 70px 0;
    }

    #entrar {
      position: relative;
      padding-top: 250px;
      margin-top: -1px;
      background: #000;
      border-top: 3px solid #000;
    }

    #entrar::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 180px;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 18px,
        rgba(0, 0, 0, 0.92) 56px,
        rgba(0, 0, 0, 0) 100%
      );
      pointer-events: none;
      z-index: 0;
    }

    .section-head { margin-bottom: 24px; }
    .section-head h3 {
      position: relative;
      display: inline-block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 4.5vw, 3.3rem);
      letter-spacing: 1px;
      line-height: .95;
      margin-bottom: 18px;
      padding-bottom: 14px;
    }

    .section-head h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: min(120px, 42%);
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(238,58,28,.95) 0%, rgba(238,58,28,.52) 45%, rgba(238,58,28,0) 100%);
      box-shadow: 0 0 12px rgba(238,58,28,.45), 0 0 28px rgba(184,34,20,.18);
    }

    .section-head p { color: var(--muted); max-width: 700px; }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 18px;
      background: rgba(5,5,5,.5);
      box-shadow: var(--shadow);
    }

    .card h4 { margin-bottom: 7px; }
    .card p { color: var(--muted); font-size: .92rem; }

    #roteiros .container {
      max-width: 1440px;
      position: relative;
    }

    .routes-intro {
      max-width: 820px;
      margin: 0 auto 10px;
      min-height: 24vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

    }

    .routes-intro.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .routes-intro h3 {
      position: relative;
      display: inline-block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.6rem, 6vw, 4.8rem);
      line-height: .92;
      letter-spacing: 1px;
      margin-bottom: 18px;
      padding-bottom: 14px;
    }

    .routes-intro h3::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: min(140px, 48%);
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(238,58,28,0) 0%, rgba(238,58,28,.7) 28%, rgba(238,58,28,.96) 50%, rgba(238,58,28,.7) 72%, rgba(238,58,28,0) 100%);
      box-shadow: 0 0 14px rgba(238,58,28,.48), 0 0 30px rgba(184,34,20,.2);
    }

    .routes-intro p {
      color: var(--muted);
      font-size: 1rem;
      max-width: 760px;
    }

    .routes-stack {
      position: relative;
      padding-bottom: 24px;
    }

    .route-panel {
      position: sticky;
      top: 94px;
      min-height: calc(100vh - 120px);
      border-radius: 22px;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 28px 60px rgba(0,0,0,.42);
      border: 1px solid rgba(255,255,255,.1);
    }

    .route-panel + .route-panel {
      margin-top: 18vh;
    }

    .route-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
      z-index: -3;
    }

    .route-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    .route-panel.legal::before { background-image: url('imagens/banner.webp'); }
    .route-panel.illegal::before { background-image: url('imagens/image.webp'); }

    .route-panel.legal::after {
      background:
        linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.36) 24%, rgba(0,0,0,.94) 100%),
        linear-gradient(to right, rgba(0,0,0,.16) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,.3) 100%),
        radial-gradient(circle at 18% 14%, rgba(224,68,34,.38) 0%, transparent 36%),
        linear-gradient(125deg, rgba(210,62,30,.3) 0%, transparent 40%);
    }

    .route-panel.illegal::after {
      background:
        linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.4) 24%, rgba(0,0,0,.95) 100%),
        linear-gradient(to right, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,.32) 100%),
        radial-gradient(circle at 18% 14%, rgba(234,52,28,.42) 0%, transparent 36%),
        linear-gradient(125deg, rgba(214,46,24,.34) 0%, transparent 42%);
    }

    .route-content {
      position: relative;
      min-height: calc(100vh - 120px);
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .route-main {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      max-width: 760px;
      margin: auto 0;
    }

    .route-content span {
      display: inline-block;
      width: fit-content;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .route-kicker {
      color: #d5d5d5;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      font-size: .8rem;
    }

    .route-content h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: .92;
      letter-spacing: 1px;
      max-width: 760px;
    }

    .route-copy {
      color: #e2e2e2;
      font-size: 1rem;
    }

    .steps { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:14px; }
    .step {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 18px;
      background: rgba(4,4,4,.48);
      box-shadow: 0 16px 34px rgba(0,0,0,.24);
    }

    .num {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      background: rgba(215,76,47,.2);
      margin-bottom: 9px;
    }

    .faq { border: 1px solid rgba(255,255,255,.1); border-radius: 14px; overflow: hidden; }
    details {
      border-bottom: 1px solid rgba(255,255,255,.1);
      padding: 14px 16px;
      background: rgba(3,3,3,.38);
    }
    details:last-child { border-bottom: 0; }
    summary { cursor:pointer; font-weight:600; list-style:none; }
    summary::-webkit-details-marker { display: none; }
    details p { margin-top: 8px; color: var(--muted); }

    .legacy {
      position: relative;
      overflow: hidden;
      margin-top: 56px;
      padding: 130px 0;
      text-align: center;
    }

.legacy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(159 3 3 / 18%)), url('imagens/9h.png') center / cover no-repeat !important;
}

    .legacy-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .legacy h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem,6vw,5rem);
      line-height: .95;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .legacy p {
      max-width: 700px;
      margin: 0 auto;
      color: #e4d8cf;
      font-size: 1rem;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 30px 0 40px;
      color: #b9b9b9;
      font-size: .85rem;
      background: rgba(0,0,0,.68);
      backdrop-filter: blur(4px);
    }

    .footer-grid {
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }

    .footer-copy {
      flex: 1 1 520px;
      min-width: 280px;
    }

    .footer-copy-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .footer-copy p {
      margin: 0;
    }

    .footer-copy p + p {
      margin-top: 8px;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .footer-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
      color: #f5f5f5;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .footer-social-link:hover {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.24);
      background: rgba(255,255,255,.07);
    }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }

    .footer-status-wrap {
      margin-left: auto;
      flex: 0 0 auto;
    }

    .footer-badge-wrap {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .dmca-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 10px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.035);
      box-shadow: 0 10px 30px rgba(0,0,0,.18);
      backdrop-filter: blur(8px);
    }

    .dmca-badge img {
      display: block;
      width: 100px;
      height: auto;
    }

    .footer-status-pill {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 11px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.035);
      color: #f5f5f5;
      white-space: nowrap;
      backdrop-filter: blur(8px);
      box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

    .footer-status-pill strong {
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .01em;
    }

    .footer-status-pill.is-online {
      border-color: rgba(101, 213, 134, .26);
      background: rgba(101, 213, 134, .08);
      color: #eaf9ef;
    }

    .footer-status-pill.is-offline {
      border-color: rgba(215, 76, 47, .26);
      background: rgba(215, 76, 47, .08);
      color: #ffe9e5;
    }

    .footer-status-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #858585;
      box-shadow: 0 0 0 5px rgba(255,255,255,.03);
      flex: 0 0 auto;
    }

    .footer-status-pill.is-online .footer-status-dot {
      background: #65d586;
      box-shadow: 0 0 0 5px rgba(101, 213, 134, .13);
    }

    .footer-status-pill.is-offline .footer-status-dot {
      background: #d74c2f;
      box-shadow: 0 0 0 5px rgba(215, 76, 47, .13);
    }

    @media (max-width: 820px) {
      .footer-grid {
        align-items: flex-start;
      }

      .footer-copy-top {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .footer-status-wrap {
        width: 100%;
        margin-left: 0;
      }

      .footer-badge-wrap {
        width: 100%;
        justify-content: flex-start;
      }

      .footer-status-pill {
        width: fit-content;
        max-width: 100%;
        white-space: normal;
      }
    }

    .blog-page {
      position: relative;
      padding: 150px 0 90px;
      overflow: hidden;
    }

    .blog-page * {
      box-sizing: border-box;
    }

    .blog-page::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 420px;
      background:
        radial-gradient(circle at top left, rgba(215,76,47,.2), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
      pointer-events: none;
      z-index: -1;
    }

    .blog-header {
      margin-bottom: 42px;
    }

    .blog-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(220px, .6fr);
      gap: 22px;
      align-items: stretch;
      margin-bottom: 18px;
      padding: 34px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(215,76,47,.26), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
        rgba(5,5,5,.7);
      box-shadow: 0 26px 56px rgba(0,0,0,.26);
    }

    .blog-page h1,
    .blog-page h2,
    .blog-page p {
      margin: 0;
    }

    .blog-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: #ffd8bd;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: 1.4px;
      text-transform: uppercase;
    }

    .blog-kicker::before {
      content: "";
      width: 38px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-soft), rgba(240,165,91,0));
    }

    .blog-hero-copy h1 {
      margin-bottom: 14px;
      font-size: clamp(3rem, 7vw, 5.2rem);
    }

    .blog-hero-copy p {
      max-width: 760px;
      color: #d8d8d8;
      font-size: 1rem;
    }

    .blog-hero-badge {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      padding: 18px 20px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      text-align: left;
    }

    .blog-hero-badge span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      line-height: .9;
      letter-spacing: 1px;
    }

    .blog-hero-badge strong {
      color: #d8d8d8;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .blog-header-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    .blog-header-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 18px 20px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.04);
      box-shadow: 0 18px 34px rgba(0,0,0,.18);
    }

    .blog-header-stat strong {
      font-size: 1.2rem;
      color: #fff;
    }

    .blog-header-stat span {
      color: #c9c9c9;
      font-size: .84rem;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .blog-filters-wrap,
    .blog-empty-wrap,
    .blog-results {
      margin-bottom: 34px;
    }

    .blog-section-head {
      margin-bottom: 16px;
    }

    .blog-section-head span {
      display: inline-block;
      margin-bottom: 8px;
      color: #ffd8bd;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    .blog-section-head h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      line-height: .95;
      letter-spacing: 1px;
    }

    .blog-section-head-inline {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }

    .blog-filters {
      padding: 20px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      background: rgba(4,4,4,.5);
      box-shadow: 0 18px 34px rgba(0,0,0,.18);
    }

    .blog-filter-form {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(220px, .8fr) auto;
      gap: 16px;
      align-items: end;
    }

    .blog-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .blog-field label {
      color: #f0e0d3;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
    }

    .blog-field input,
    .blog-field select {
      min-height: 56px;
      width: 100%;
      padding: 0 16px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      color: #fff;
      font: inherit;
      outline: none;
      transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .blog-field input::placeholder {
      color: rgba(255,255,255,.42);
    }

    .blog-field input:focus,
    .blog-field select:focus {
      border-color: rgba(240,165,91,.82);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 4px rgba(215,76,47,.14);
    }

    .blog-filter-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .blog-submit,
    .blog-clear {
      min-width: 170px;
    }

    .blog-clear {
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      color: #fff;
    }

    .blog-results-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: #cebfb3;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .blog-results-summary {
      color: #cebfb3;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .7px;
      white-space: nowrap;
      margin: 0;
    }

    .blog-lead {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(320px, .8fr);
      gap: 20px;
      margin-bottom: 34px;
    }

    .blog-featured-card {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
      min-height: 420px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 28px;
      background: rgba(6,6,6,.6);
      box-shadow: 0 28px 60px rgba(0,0,0,.26);
    }

    .blog-featured-media {
      min-height: 100%;
      background: linear-gradient(135deg, rgba(215,76,47,.24), rgba(240,165,91,.16));
    }

    .blog-featured-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-featured-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
    }

    .blog-featured-body h2 {
      margin-bottom: 14px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.3rem, 5vw, 4rem);
      line-height: .94;
      letter-spacing: 1px;
    }

    .blog-featured-body p {
      color: #d2d2d2;
      font-size: 1rem;
    }

    .blog-side-list {
      display: grid;
      gap: 16px;
    }

    .blog-mini-card {
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 14px;
      align-items: stretch;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      background: rgba(5,5,5,.48);
      box-shadow: 0 16px 30px rgba(0,0,0,.18);
    }

    .blog-mini-media {
      overflow: hidden;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(215,76,47,.24), rgba(240,165,91,.16));
    }

    .blog-mini-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-mini-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .blog-mini-body h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
      line-height: 1.16;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .blog-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 22px;
      background: rgba(6,6,6,.5);
      box-shadow: 0 20px 44px rgba(0,0,0,.24);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      border-color: rgba(240, 91, 91, 0.24);
      box-shadow: 0 26px 56px rgba(0,0,0,.34);
    }

    .blog-card-media {
      position: relative;
      display: block;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: linear-gradient(135deg, rgb(104, 0, 0), rgba(0, 0, 0, 0.16));
    }

    .blog-card-media img,
    .blog-card-placeholder {
      width: 100%;
      height: 100%;
    }

    .blog-card-media img {
      object-fit: cover;
      transition: transform .42s ease;
    }

    .blog-card:hover .blog-card-media img {
      transform: scale(1.04);
    }

    .blog-card-placeholder {
      display: grid;
      place-items: center;
      font-size: 3rem;
      color: #fff;
    }

    .blog-card-type {
      position: absolute;
      right: 16px;
      bottom: 16px;
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(8,12,18,.78);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      color: #fff;
      font-size: .74rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .blog-card-body {
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      padding: 20px;
    }

    .blog-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      margin-bottom: 12px;
      color: #b6b6b6;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .7px;
      font-weight: 700;
    }

    .blog-card h2 {
      margin-bottom: 12px;
      font-size: 1.28rem;
      line-height: 1.08;
    }

    .blog-card p {
      flex: 1 1 auto;
      color: #cbcbcb;
      font-size: .95rem;
    }

    .blog-card-link {
      margin-top: 18px;
      color: #ffd1ad;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .7px;
      font-size: .82rem;
    }

    .blog-card-link:hover,
    .blog-card h2 a:hover {
      color: var(--accent-soft);
    }

    .blog-empty {
      padding: 60px 24px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 22px;
      background: rgba(5,5,5,.5);
      text-align: center;
      box-shadow: 0 20px 44px rgba(0,0,0,.2);
    }

    .blog-empty-icon {
      display: grid;
      place-items: center;
      width: 88px;
      height: 88px;
      margin: 0 auto 20px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(215,76,47,.28), rgba(240,165,91,.18));
      font-size: 2.2rem;
    }

    .blog-empty h2 {
      margin-bottom: 12px;
      font-size: 2rem;
    }

    .blog-empty p {
      max-width: 560px;
      margin: 0 auto 22px;
      color: #cacaca;
    }

    .blog-pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 30px;
    }

    .blog-page-link {
      min-width: 52px;
      min-height: 52px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .blog-page-link:hover,
    .blog-page-link.is-current {
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      border-color: transparent;
      color: #120a08;
      transform: translateY(-1px);
    }

    @media (max-width: 980px) {
      .news-grid, .cards-3, .steps { grid-template-columns: 1fr; }

      .hero {
        min-height: 86vh;
        padding-top: 112px;
        padding-bottom: 18px;
      }

      .hero-content {
        min-height: 52vh;
        padding-bottom: 56px;
      }

      .hero .hero-bottom-shadow {
        bottom: 112px;
        height: 72px;
      }

      .hero::after {
        bottom: 96px;
        height: 4px;
      }

      .news-overlap {
        margin-top: 12px;
        margin-bottom: -108px;
      }

      #entrar {
        padding-top: 166px;
      }

      #entrar::before {
        height: 120px;
      }

      .news-featured img {
        height: 250px;
      }

      .news-featured h2 {
        font-size: 1.35rem;
      }

      .news-item {
        grid-template-columns: 102px 1fr;
      }

      .news-item img {
        width: 102px;
        height: 102px;
      }

      .routes-stack {
        padding-bottom: 0;
      }

      .routes-intro {
        min-height: auto;
        margin-bottom: 12px;
      }

      .route-panel {
        position: relative;
        top: auto;
        min-height: 420px;
        border-radius: 18px;
      }

      .route-panel + .route-panel {
        margin-top: 16px;
      }

      .route-content {
        min-height: 420px;
        padding: 20px;
      }

      .route-content h4 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
      }

      .legacy {
        padding: 80px 0;
        margin-top: 40px;
      }

      .blog-page {
        padding-top: 132px;
      }

      .blog-hero,
      .blog-filter-form {
        grid-template-columns: 1fr;
      }

      .blog-header-strip {
        grid-template-columns: 1fr;
      }

      .blog-lead,
      .blog-featured-card {
        grid-template-columns: 1fr;
      }

      .blog-mini-card {
        grid-template-columns: 100px 1fr;
      }

      .blog-hero {
        padding: 24px;
      }

      .blog-hero-badge {
        text-align: left;
      }

      .blog-filters {
        padding: 18px;
      }

      .blog-filter-actions {
        width: 100%;
      }

      .blog-submit,
      .blog-clear {
        width: 100%;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .blog-section-head-inline {
        align-items: flex-start;
        flex-direction: column;
      }

      .blog-results-summary {
        white-space: normal;
      }

      .menu a { font-size: .78rem; }
      .hero-kicker { font-size: .76rem; }
    }

    @media (max-width: 640px) {
      .container {
        padding: 0 14px;
      }

      .navbar {
        min-height: 78px;
      }

      .brand {
        padding-left: 12px;
      }

      .brand img {
        width: 54px;
        height: 54px;
      }

      .nav-toggle {
        width: 48px;
        height: 48px;
        border-radius: 14px;
      }

      .menu {
        inset: 78px 14px auto 14px;
      }

      .hero {
        min-height: 78vh;
        padding-top: 104px;
      }

      .hero::before {
        inset: 0 0 -120px 0;
        background:
          radial-gradient(circle at 50% 18%, rgba(179, 0, 0, 0.34), transparent 26%),
          radial-gradient(circle at 18% 22%, rgba(120, 0, 0, 0.28), transparent 30%),
          radial-gradient(circle at 82% 16%, rgba(255, 80, 80, 0.16), transparent 24%),
          linear-gradient(180deg, #120202 0%, #070707 48%, #000000 100%);
      }

      .hero-content {
        min-height: 52vh;
        justify-content: center;
        align-items: center;
        padding-bottom: 24px;
        text-align: center;
                background: url(/data/imagens/logo.png) no-repeat center;
      }

      .hero-main {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-main::before {
        content: "";
        width: min(220px, 58vw);
        aspect-ratio: 1;
        margin-bottom: 20px;
        background: url(imagens/logo.png) center / contain no-repeat;
        filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
      }

      h1 {
        font-size: clamp(2.3rem, 9vw, 3.3rem);
        line-height: 0.92;
      }

      .hero-main p {
        font-size: 0.98rem;
        max-width: 100%;
      }

      .hero-note,
      .hero-kicker {
        justify-content: center;
      }

      .hero-kicker::before {
        width: 28px;
      }

      .row {
        justify-content: center;
      }

      #entrar {
        padding-top: 120px;
      }

      #entrar::before {
        height: 90px;
      }

      .news-overlap {
        margin-bottom: -70px;
      }

      .section-head {
        margin-bottom: 16px;
      }

      .step {
        padding: 14px;
      }

      .num {
        width: 26px;
        height: 26px;
        font-size: .85rem;
      }

      details {
        padding: 16px 14px;
      }

      .route-content h4 {
        font-size: clamp(2rem, 9vw, 3rem);
      }

      .legacy {
        padding: 60px 0;
        margin-top: 32px;
      }

      .legacy h3 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
      }
    }

    @media (max-width: 480px) {
      .news-item {
        grid-template-columns: 1fr;
      }

      .news-item img {
        width: 100%;
        height: 160px;
        border-radius: 6px;
      }

      .route-panel {
        min-height: 320px;
        border-radius: 14px;
      }

      .route-content {
        min-height: 320px;
        padding: 16px;
      }

      .route-content h4 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
      }

      .section-head h3 {
        font-size: clamp(1.75rem, 7.5vw, 2.3rem);
      }

      .routes-intro h3 {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .legacy {
        padding: 44px 0;
      }

      .legacy h3 {
        font-size: clamp(2rem, 8vw, 2.8rem);
      }

      .legacy p {
        font-size: .92rem;
      }

      .news-featured h2 {
        font-size: 1.15rem;
      }

      h1 {
        font-size: clamp(2rem, 8.5vw, 2.8rem);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .routes-intro {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .route-panel::before { transition: none; }
    }
