@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');
    
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --green: #5AB031;
      --green2: #4a8f27;
      --green-bg: rgba(90, 176, 49, 0.08);
      --green-bd: rgba(90, 176, 49, 0.25);
      --yellow: #EEC700;
      --navy: #0d1033;
      --navy2: #101338;
      --navy3: #141840;
      --white: #FFFFFF;
      --gray: #8888aa;
      --border: rgba(255, 255, 255, 0.07);
    }

    html {
      scroll-behavior: smooth;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    .site-shell {
      position: relative;
      width: 100%;
      max-width: 1920px;
      min-height: 100vh;
      margin: 0 auto;
      overflow: hidden;
      background: var(--navy);
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 50%;
      width: 100%;
      max-width: 1920px;
      transform: translateX(-50%);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 64px;
      background: rgba(13, 16, 51, 0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    a.nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 73px;
      width: auto;
      display: block;
    }

    .nav-pill {
      display: flex;
      align-items: center;
      flex: 1;
      margin-left: 32px;
    }

    .nav-links {
      display: flex;
      gap: 4px;
      list-style: none;
      justify-content: flex-start;
    }

    .nav-links a {
      display: flex;
      align-items: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      letter-spacing: 0.4px;
      padding: 7px 12px;
      transition: color .2s, background .2s;
    }

    .nav-links a:hover {
      color: #fff;
      background: var(--green);
    }

    .nav-links a.nav-active {
      color: var(--green) !important;
      background: rgba(90, 176, 49, 0.08);
    }

    .nav-links a.nav-active span {
      max-width: 200px;
      opacity: 1;
      margin-left: 6px;
    }

    .nav-links a span {
      display: inline-block;
      max-width: 0;
      overflow: hidden;
      opacity: 0;
      white-space: nowrap;
      margin-left: 0;
      font-size: 14px;
      transition: max-width .3s ease, opacity .25s ease, margin-left .3s ease;
    }

    .nav-links a:hover span {
      max-width: 200px;
      opacity: 1;
      margin-left: 6px;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .nav-loja,
    .nav-cbv {
      display: flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding: 7px 12px;
      transition: color .2s, background .2s;
      border: 1px solid transparent;
    }

    .nav-loja:hover,
    .nav-cbv:hover {
      color: #fff;
      background: var(--green);
    }

    .nav-cta {
      background: var(--yellow);
      color: var(--navy);
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 10px 20px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background .2s, transform .15s;
    }

    .nav-cta:hover {
      background: #d4b000;
      transform: translateY(-1px);
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 5px;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255, 255, 255, 0.7);
      transition: transform .3s, opacity .3s;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-mobile {
      display: none;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100%;
      max-width: 1920px;
      transform: translateX(-50%);
      background: var(--navy);
      z-index: 998;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .nav-mobile.open {
      opacity: 1;
      pointer-events: all;
    }

    .nav-mobile a {
      font-family: 'Teko', sans-serif;
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color .2s;
      letter-spacing: 1px;
    }

    .nav-mobile a:hover {
      color: var(--green);
    }

    .nav-mobile-cta {
      background: var(--green) !important;
      color: #fff !important;
      padding: 16px 40px !important;
      font-size: 18px !important;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 64px 88px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #070c2a 0%, #0d1033 50%, #081028 100%);
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 110%;
      object-fit: cover;
      opacity: 0.22;
      z-index: 0;
      pointer-events: none;
      will-change: transform;
    }

    .hero-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 75% 25%, rgba(90, 176, 49, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 35% 35% at 15% 85%, rgba(238, 199, 0, 0.05) 0%, transparent 60%);
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 72px 72px;
    }

    .hero-line-accent {
      position: absolute;
      top: 0;
      right: 200px;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(90, 176, 49, 0.35) 40%, rgba(90, 176, 49, 0.18) 70%, transparent 100%);
    }

    .hero-eyebrow {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 24px;
      width: fit-content;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--green);
    }

    .hero-title {
      position: relative;
      font-family: 'Teko', sans-serif;
      font-size: clamp(56px, 7.5vw, 108px);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -1px;
      margin-bottom: 32px;
      text-transform: uppercase;
    }

    .title-line {
      display: block;
    }

    .green-inline {
      color: var(--green);
    }

    .yellow-inline {
      color: var(--yellow);
    }

    .hero-manifesto {
      position: relative;
      max-width: 480px;
      font-size: 16px;
      line-height: 1.75;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 48px;
      border-left: 2px solid var(--green);
      padding-left: 20px;
    }

    .hero-actions {
      position: relative;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .btn-green {
      background: var(--green);
      color: #fff;
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 32px;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }

    .btn-green:hover {
      background: var(--green2);
      transform: translateY(-1px);
    }

    .btn-ghost {
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 32px;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.45);
      color: var(--white);
    }

    .hero-kpis {
      position: absolute;
      right: 64px;
      bottom: 88px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: flex-end;
    }

    .kpi {
      text-align: right;
    }

    .kpi-num {
      font-family: 'Teko', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--green);
      line-height: 1;
      letter-spacing: -1px;
    }

    .kpi-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
      letter-spacing: 0.5px;
      margin-top: 4px;
      text-transform: uppercase;
    }

    .kpi-divider {
      width: 32px;
      height: 1px;
      background: var(--yellow);
      opacity: 0.7;
      margin-left: auto;
      margin-bottom: 4px;
    }

    /* ─── STRIP ─── */
    .strip {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 64px;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .strip-label {
      font-family: 'Teko', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      white-space: nowrap;
      margin-right: 52px;
    }

    .strip-overflow {
      overflow: hidden;
      flex: 1;
    }

    .strip-track {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: strip-scroll 28s linear infinite;
      width: max-content;
    }

    @keyframes strip-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .strip-logo {
      font-family: 'Teko', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: rgba(255, 255, 255, 0.2);
      transition: color .2s;
      cursor: default;
      text-transform: uppercase;
    }

    .strip-logo:hover {
      color: rgba(255, 255, 255, 0.55);
    }

    /* ─── SECTIONS ─── */
    section {
      padding: 108px 64px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Teko', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--green);
    }

    .section-title {
      font-family: 'Teko', sans-serif;
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 700;
      letter-spacing: -0.5px;
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-sub {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.8;
      max-width: 500px;
      font-weight: 300;
    }

    .green-divider {
      width: 48px;
      height: 2px;
      background: var(--green);
      margin: 24px 0;
    }

    /* ─── PROGRAMA (Projetos horizontal carousel) ─── */
    .projetos {
      background: var(--navy);
      padding: 0;
      padding-top: 108px;
      padding-bottom: 108px;
      overflow: hidden;
      position: relative;
    }

    .projetos-head {
      padding: 0 64px;
      margin-bottom: 48px;
    }

    .projetos-track {
      display: flex;
      gap: 2px;
      padding: 0 64px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .projetos-track::-webkit-scrollbar {
      display: none;
    }

    .proj-card {
      flex: 0 0 340px;
      height: 420px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .proj-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-color: var(--navy3);
      filter: grayscale(60%);
      transition: filter .5s, transform .6s;
    }

    .proj-card:hover .proj-card-bg {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .proj-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 16, 51, 0.96) 0%, rgba(13, 16, 51, 0.4) 50%, transparent 100%);
    }

    .proj-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to bottom, rgba(10, 30, 15, 0.88) 0%, rgba(10, 30, 15, 0.35) 40%, transparent 65%);
      pointer-events: none;
    }

    .proj-card-label {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
      background: rgba(90, 176, 49, 0.12);
      border: 1px solid rgba(90, 176, 49, 0.28);
      padding: 5px 12px;
    }

    .proj-card-label span {
      font-family: 'Teko', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
    }

    .proj-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px;
      z-index: 2;
    }

    .proj-num-label {
      font-family: 'Teko', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 8px;
    }

    .proj-title {
      font-family: 'Teko', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 6px;
      color: var(--yellow);
    }

    .proj-cat {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
      margin-bottom: 8px;
    }

    .proj-card-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0);
      line-height: 1.6;
      font-weight: 300;
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, color .3s;
    }

    .proj-card:hover .proj-card-desc {
      color: rgba(255, 255, 255, 0.65);
      max-height: 100px;
    }

    /* ─── SOBRE ─── */
    .sobre {
      background: var(--navy2);
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 88px;
      align-items: center;
    }

    .sobre-visual {
      position: relative;
      height: 460px;
      background: var(--navy3);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sobre-visual-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(90, 176, 49, 0.08) 0%, transparent 70%);
    }

    .sobre-num {
      font-family: 'Teko', sans-serif;
      font-size: 130px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -4px;
      color: var(--yellow);
      opacity: 0.85;
      position: relative;
      z-index: 1;
    }

    .sobre-num-sup {
      font-family: 'Teko', sans-serif;
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      position: absolute;
      bottom: 36px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 1;
    }

    .sobre-corner {
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      display: flex;
      gap: 10px;
      z-index: 2;
      flex-wrap: wrap;
    }

    .sobre-tag {
      background: rgba(90, 176, 49, 0.1);
      border: 1px solid rgba(90, 176, 49, 0.25);
      color: var(--green);
      font-family: 'Teko', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 7px 14px;
    }

    .sobre-text p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .sobre-text p strong {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .sobre-manifesto {
      border-left: 2px solid var(--green);
      padding-left: 20px;
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      font-style: italic;
      font-weight: 300;
      margin: 36px 0;
    }

    .sobre-pillars {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .pillar-icon {
      color: var(--green);
      font-size: 13px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pillar-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      font-weight: 300;
    }

    /* ─── METODOLOGIA ─── */
    #metodologia {
      background: var(--navy);
    }

    .servicos-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 64px;
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }

    .servicos-grid .serv-card:nth-child(1) {
      grid-column: 1 / span 2;
    }

    .servicos-grid .serv-card:nth-child(2) {
      grid-column: 3 / span 2;
    }

    .servicos-grid .serv-card:nth-child(3) {
      grid-column: 5 / span 2;
    }

    .servicos-grid .serv-card:nth-child(4) {
      grid-column: 2 / span 2;
    }

    .servicos-grid .serv-card:nth-child(5) {
      grid-column: 4 / span 2;
    }

    .serv-card {
      background: var(--navy2);
      padding: 48px 40px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: border-color .25s, background .25s;
    }

    .serv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .servicos-grid .serv-card:nth-child(even)::before {
      background: var(--yellow);
    }

    .serv-card:hover {
      background: #141840;
      border-color: rgba(90, 176, 49, 0.2);
    }

    .serv-card:hover::before {
      transform: scaleX(1);
    }

    .serv-num {
      font-family: 'Teko', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 2px;
      color: rgba(90, 176, 49, 0.5);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .serv-title {
      font-family: 'Teko', sans-serif;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .serv-desc {
      color: var(--gray);
      font-size: 14px;
      line-height: 1.75;
      font-weight: 300;
    }

    .serv-list {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .serv-list li {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 300;
      padding-left: 14px;
      position: relative;
      list-style: none;
    }

    .serv-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--green);
      font-size: 11px;
    }

    .serv-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 32px;
      font-family: 'Teko', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      text-decoration: none;
    }

    .serv-cta::after {
      content: '→';
      transition: transform .2s;
    }

    .serv-card:hover .serv-cta::after {
      transform: translateX(5px);
    }

    /* ─── UNIDADES (Cases horizontal scroll) ─── */
    .cases {
      background: linear-gradient(160deg, var(--navy2) 0%, #141a3f 40%, #1a1a30 65%, rgba(60, 48, 5, 0.98) 100%);
      padding: 0;
      position: relative;
    }

    .cases::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 65% at 85% 70%, rgba(238, 199, 0, 0.28) 0%, rgba(238, 199, 0, 0.10) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .cases-hscroll-outer {
      position: relative;
      z-index: 1;
    }

    .cases-hscroll-outer {
      position: relative;
    }

    .cases-hscroll-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
    }

    .cases-hscroll-header {
      position: absolute;
      top: 108px;
      left: 64px;
      z-index: 2;
    }

    .cases-hscroll-inner {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 0 64px;
      padding-top: 108px;
      will-change: transform;
      width: max-content;
    }

    .case-h-quote {
      width: 380px;
      flex-shrink: 0;
      padding-top: 200px;
      padding-right: 40px;
    }

    .case-h-quote blockquote {
      font-family: 'Teko', sans-serif;
      font-size: 28px;
      font-weight: 300;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.3);
      font-style: normal;
      letter-spacing: -0.3px;
    }

    .case-h-quote blockquote strong {
      color: var(--green);
      font-weight: 600;
    }

    .cases-rows-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cases-row {
      display: flex;
      gap: 16px;
      align-items: flex-end;
    }

    .case-h-card {
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      cursor: pointer;
    }

    .case-h-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-color: var(--navy3);
      filter: grayscale(60%);
      transition: filter .5s, transform .6s;
    }

    .case-h-card:hover .case-h-card-bg {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .case-h-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 16, 51, 0.98) 0%, rgba(13, 16, 51, 0.85) 35%, rgba(13, 16, 51, 0.4) 65%, transparent 100%);
    }

    .case-h-card--no-overlay::after {
      display: none;
    }

    .case-h-card--no-overlay {
      cursor: default;
    }

    .case-h-card--no-overlay .case-h-card-bg {
      filter: none;
      transition: none;
    }

    .case-h-card--no-overlay:hover .case-h-card-bg {
      filter: none;
      transform: none;
    }

    .case-h-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      z-index: 2;
    }

    .case-h-cat {
      font-family: 'Teko', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 6px;
    }

    .case-h-title {
      font-family: 'Teko', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 8px;
    }

    .case-h-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 300;
      line-height: 1.5;
    }

    /* ─── MAPA ─── */
    .mapa-section {
      background: var(--navy);
      padding: 72px 64px;
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
    }

    .mapa-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .mapa-header h3 {
      font-family: 'Teko', sans-serif;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.3px;
      line-height: 1;
    }

    .mapa-header p {
      font-size: 13px;
      color: var(--gray);
      font-weight: 300;
      max-width: 320px;
      text-align: right;
      line-height: 1.6;
    }

    #avb-map {
      width: 100%;
      height: 480px;
      border: 1px solid var(--border);
      background: #a8c8e8;
    }

    .leaflet-popup-content-wrapper {
      background: var(--navy2);
      border: 1px solid var(--border);
      border-radius: 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      color: var(--white);
    }

    .leaflet-popup-tip {
      background: var(--navy2);
    }

    .leaflet-popup-content {
      margin: 16px 18px;
    }

    .popup-title {
      font-family: 'Teko', sans-serif;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #fff;
      margin-bottom: 4px;
    }

    .popup-city {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      font-family: 'Teko', sans-serif;
    }

    @media (max-width: 768px) {
      .mapa-section {
        padding: 48px 20px;
      }

      .mapa-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .mapa-header p {
        text-align: left;
      }

      #avb-map {
        height: 340px;
      }
    }

    /* ─── NÚMEROS ─── */
    .numeros {
      background: var(--green);
    }

    .numeros .eyebrow {
      color: rgba(0, 0, 0, 0.45);
    }

    .numeros .eyebrow::before {
      background: rgba(0, 0, 0, 0.35);
    }

    .numeros .section-title {
      color: #fff;
    }

    .numeros-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 64px;
    }

    .num-item {
      padding: 40px 32px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .num-item:last-child {
      border-right: none;
    }

    .num-val {
      font-family: 'Teko', sans-serif;
      font-size: 64px;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: -2px;
      line-height: 1;
    }

    .num-label {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.65);
      margin-top: 10px;
      line-height: 1.5;
    }

    /* ─── PARCEIROS ─── */
    .clientes {
      background: var(--navy);
    }

    .partners-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 56px;
      margin-top: 64px;
    }

    .partner-logo img {
      width: auto;
      object-fit: contain;
      display: block;
    }

    .partner-logo-text {
      font-family: 'Teko', sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.2;
    }

    /* ─── AGENDA ─── */
    .agenda {
      background: var(--navy);
      border-top: 1px solid var(--border);
    }

    .agenda-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 56px;
      border-top: 1px solid var(--border);
    }

    .agenda-card {
      background: var(--navy);
      padding: 28px 32px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0;
      border-bottom: 1px solid var(--border);
      transition: background .3s, box-shadow .3s;
      cursor: default;
    }

    .agenda-card:hover {
      background: #111530;
      box-shadow: inset 3px 0 0 rgba(90, 176, 49, 0.5);
    }

    .agenda-card-month {
      font-family: 'Teko', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--yellow);
      width: 140px;
      flex-shrink: 0;
    }

    .agenda-card-title {
      font-family: 'Teko', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.2px;
      line-height: 1.1;
      color: #fff;
      width: 240px;
      flex-shrink: 0;
    }

    .agenda-card-location {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      width: 200px;
      flex-shrink: 0;
    }

    .agenda-card-location::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }

    .agenda-card-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 300;
      line-height: 1.65;
      flex: 1;
      padding: 0 32px;
    }

    .agenda-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Teko', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 10px;
      border: 1px solid;
      align-self: flex-start;
    }

    .agenda-card-tag.proximo {
      color: var(--green);
      border-color: rgba(90, 176, 49, 0.4);
      background: rgba(90, 176, 49, 0.06);
    }

    .agenda-card-tag.proximo::before {
      content: '';
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse-dot 1.4s ease-in-out infinite;
    }

    .agenda-card-tag.anual {
      color: var(--yellow);
      border-color: rgba(238, 199, 0, 0.3);
      background: rgba(238, 199, 0, 0.05);
    }

    .agenda-card-tag.realizado {
      color: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.12);
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(0.7);
      }
    }


    .agenda-card--hidden {
      display: none;
    }

    .agenda-card--hidden.agenda-card--visible {
      display: flex;
      animation: agenda-fade-in 0.4s ease both;
    }

    @keyframes agenda-fade-in {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .agenda-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      background: var(--yellow);
      border: none;
      color: var(--navy);
      font-family: 'Teko', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 13px 28px;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }

    .agenda-toggle:hover {
      background: #d4b000;
      transform: translateY(-1px);
    }

    .agenda-toggle i {
      font-size: 10px;
      transition: transform .3s ease;
    }

    .agenda-toggle.open i {
      transform: rotate(180deg);
    }

    /* ─── CONTATO ─── */
    .contato {
      background: var(--navy2);
    }

    .contato-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 88px;
      align-items: start;
    }

    .contato-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 32px;
    }

    .contato-tab {
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 12px 24px;
      cursor: pointer;
      background: transparent;
      border: 1px solid var(--border);
      color: rgba(255, 255, 255, 0.4);
      transition: all .2s;
    }

    .contato-tab.active {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }

    .contato-tab:hover:not(.active) {
      color: var(--white);
      border-color: rgba(90, 176, 49, 0.35);
    }

    .contato-info p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 48px;
    }

    .contato-details {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .ci {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .ci-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }

    .ci-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 300;
      line-height: 1.6;
    }

    .ci-text strong {
      display: block;
      color: var(--white);
      font-weight: 500;
      font-size: 13px;
      margin-bottom: 2px;
      letter-spacing: 0.3px;
    }

    .contato-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-g {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-label {
      font-family: 'Teko', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
    }

    .form-input,
    .form-select,
    .form-ta {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--white);
      font-size: 14px;
      font-weight: 300;
      padding: 13px 16px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s, background .2s;
    }

    .form-input::placeholder,
    .form-ta::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    .form-input:focus,
    .form-select:focus,
    .form-ta:focus {
      border-color: rgba(90, 176, 49, 0.5);
      background: rgba(90, 176, 49, 0.03);
    }

    .form-ta {
      resize: vertical;
      min-height: 120px;
    }

    .form-select option {
      background: #101338;
    }

    .form-btn {
      background: var(--green);
      color: #fff;
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 15px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: background .2s, transform .15s;
    }

    .form-btn:hover {
      background: var(--green2);
      transform: translateY(-1px);
    }

    .form-btn:disabled {
      cursor: not-allowed;
      opacity: 0.65;
      transform: none;
    }

    .form-feedback {
      display: none;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      line-height: 1.45;
      padding: 12px 14px;
    }

    .form-feedback.is-success,
    .form-feedback.is-error {
      display: block;
    }

    .form-feedback.is-success {
      background: rgba(90, 176, 49, 0.1);
      border-color: rgba(90, 176, 49, 0.35);
      color: rgba(255, 255, 255, 0.88);
    }

    .form-feedback.is-error {
      background: rgba(204, 52, 52, 0.11);
      border-color: rgba(204, 52, 52, 0.34);
      color: rgba(255, 255, 255, 0.88);
      white-space: pre-line;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #060919;
      border-top: 1px solid var(--border);
      padding: 64px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 56px;
    }

    .footer-brand img {
      height: 52px;
      width: auto;
      margin-bottom: 20px;
      display: block;
    }

    .footer-brand p {
      color: var(--gray);
      font-size: 13px;
      line-height: 1.8;
      font-weight: 300;
      max-width: 280px;
      margin-bottom: 28px;
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .social {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
    }

    .social:hover {
      background: rgba(90, 176, 49, 0.1);
      color: var(--green);
      border-color: rgba(90, 176, 49, 0.25);
    }

    .footer-col h4 {
      font-family: 'Teko', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 300;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--green);
    }

    /* ─── MODALS ─── */
    .modal-overlay {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100%;
      max-width: 1920px;
      transform: translateX(-50%);
      background: rgba(7, 10, 35, 0.88);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    #privacy-modal {
      inset: auto !important;
      top: 0 !important;
      bottom: 0 !important;
      left: 50% !important;
      width: 100% !important;
      max-width: 1920px !important;
      transform: translateX(-50%) !important;
    }

    .modal {
      background: var(--navy2);
      border: 1px solid var(--border);
      max-width: 640px;
      width: 90%;
      max-height: 85vh;
      overflow-y: auto;
      padding: 56px;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.4);
      font-size: 24px;
      cursor: pointer;
      transition: color .2s;
    }

    .modal-close:hover {
      color: var(--white);
    }

    .modal-eyebrow {
      font-family: 'Teko', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }

    .modal-title {
      font-family: 'Teko', sans-serif;
      font-size: 42px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: -0.5px;
      margin-bottom: 28px;
    }

    .modal-body p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .modal-body p strong {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .modal-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 24px 0;
    }

    .modal-list li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 300;
      padding-left: 20px;
      position: relative;
      line-height: 1.6;
    }

    .modal-list li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--green);
      font-size: 8px;
      top: 5px;
    }

    .modal-cta {
      display: inline-block;
      margin-top: 20px;
      background: var(--green);
      color: #fff;
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 28px;
      text-decoration: none;
      transition: background .2s;
    }

    .modal-cta:hover {
      background: var(--green2);
    }

    /* ─── RESPONSIVE TABLET ─── */
    @media (max-width: 1024px) {
      nav {
        padding: 18px 32px;
      }

      .hero {
        padding: 0 32px 80px;
      }

      .hero-kpis {
        right: 32px;
        bottom: 80px;
        gap: 20px;
      }

      .kpi-num {
        font-size: 36px;
      }

      .strip {
        padding: 24px 32px;
      }

      section {
        padding: 80px 32px;
      }

      .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .sobre-visual {
        height: 320px;
      }

      .servicos-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 40px;
      }

      .servicos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
      }

      .servicos-grid .serv-card:nth-child(n) {
        grid-column: span 1 !important;
      }

      .serv-card {
        padding: 32px 24px;
      }

      .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .num-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .contato-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .footer-brand {
        grid-column: span 2;
      }

      .projetos-head {
        padding: 0 32px;
      }

      .projetos-track {
        padding: 0 32px;
      }

      .cases-hscroll-header {
        left: 32px;
      }

      .cases-hscroll-inner {
        padding: 0 32px;
        padding-top: 150px;
      }

      .partners-logos {
        gap: 40px;
      }
    }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {

      /* Nav */
      nav {
        padding: 14px 20px;
      }

      .nav-links,
      .nav-pill {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .nav-mobile {
        display: flex;
      }

      .nav-cta {
        display: none;
      }

      /* Hero */
      .hero {
        padding: 100px 20px 48px;
        min-height: 100svh;
        justify-content: flex-end;
      }

      .hero-img {
        opacity: 0.12;
      }

      .hero-bg {
        background: linear-gradient(180deg, rgba(7, 10, 40, 0.5) 0%, #0d1033 60%, #0d1033 100%);
      }

      .hero-line-accent {
        display: none;
      }

      .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
        white-space: normal;
      }

      .hero-title {
        font-size: clamp(40px, 13vw, 68px);
        margin-bottom: 20px;
      }

      .hero-manifesto {
        font-size: 14px;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.75);
        border-left-width: 2px;
      }

      .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
      }

      .btn-green,
      .btn-ghost {
        text-align: center;
        padding: 14px 20px;
        font-size: 12px;
      }

      .hero-kpis {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 36px;
      }

      .kpi {
        text-align: left;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
      }

      .kpi-divider {
        margin-left: 0;
        margin-right: auto;
      }

      .kpi-num {
        font-size: 28px;
      }

      .kpi-label {
        font-size: 10px;
      }

      /* Strip */
      .strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
      }

      .strip-label {
        margin-right: 0;
        padding-left: 20px;
      }

      .strip-overflow {
        width: 100%;
      }

      /* Sections */
      section {
        padding: 56px 20px;
      }

      .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
      }

      .section-title {
        font-size: clamp(30px, 9vw, 48px);
      }

      .section-sub {
        font-size: 14px;
        max-width: 100%;
      }

      .green-divider {
        margin: 18px 0;
      }

      /* Programa */
      .projetos-head {
        padding: 0 20px;
      }

      .projetos-track {
        padding: 0 20px;
        gap: 12px;
      }

      .proj-card {
        flex: 0 0 260px;
        height: 340px;
      }

      /* Sobre */
      .sobre-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .sobre-visual {
        height: auto;
        min-height: 220px;
        padding: 28px 20px 20px;
        flex-direction: column;
        gap: 8px;
        overflow: visible;
      }

      .sobre-corner {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 8px;
      }

      .sobre-num {
        font-size: 72px;
        letter-spacing: -2px;
      }

      .sobre-num-sup {
        position: static;
        font-size: 14px;
        text-align: center;
      }

      .sobre-text p {
        font-size: 14px;
      }

      .sobre-manifesto {
        font-size: 15px;
        margin: 24px 0;
      }

      /* Metodologia */
      .servicos-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 32px;
      }

      .servicos-grid {
        grid-template-columns: 1fr !important;
        gap: 2px;
      }

      .servicos-grid .serv-card:nth-child(n) {
        grid-column: 1 / -1 !important;
      }

      .serv-card {
        padding: 28px 20px;
      }

      .serv-title {
        font-size: 20px;
      }

      /* Agenda */
      .agenda-grid {
        margin-top: 28px;
      }

      .agenda-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 24px 20px;
      }

      .agenda-card-month {
        width: auto;
      }

      .agenda-card-title {
        width: auto;
        font-size: 22px;
      }

      .agenda-card-location {
        width: auto;
      }

      .agenda-card-desc {
        padding: 0;
      }

      .agenda-card-tag {
        align-self: flex-start;
      }

      /* Unidades */
      .cases-hscroll-outer {
        height: auto !important;
      }

      .cases-hscroll-sticky {
        position: relative;
        height: auto;
        overflow: visible;
      }

      .cases-hscroll-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        padding-top: 0;
        width: 100%;
        transform: none !important;
      }

      .case-h-quote {
        width: 100%;
        padding: 20px 0 8px;
      }

      .case-h-quote blockquote {
        font-size: 22px;
      }

      .cases-rows-wrap {
        gap: 10px;
        width: 100%;
      }

      .cases-row {
        flex-direction: column;
        width: 100%;
      }

      .case-h-card {
        width: 100% !important;
        height: 220px !important;
      }

      .cases-hscroll-header {
        position: relative;
        top: auto;
        left: auto;
        padding: 56px 20px 24px;
      }

      /* Mapa */
      .mapa-section {
        padding: 48px 20px;
      }

      .mapa-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .mapa-header h3 {
        font-size: 26px;
      }

      .mapa-header p {
        text-align: left;
        max-width: 100%;
      }

      #avb-map {
        height: 320px;
      }

      /* Números */
      .numeros-grid {
        grid-template-columns: 1fr !important;
      }

      .num-item {
        padding: 24px 20px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .num-item:last-child {
        border-bottom: none;
      }

      .num-val {
        font-size: 52px;
      }

      /* Parceiros */
      .partners-logos {
        flex-direction: column;
        gap: 0;
        margin-top: 32px;
      }

      .partner-logo {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
      }

      .partner-logo:first-child {
        border-top: 1px solid var(--border);
      }

      .partner-logo img {
        max-height: 52px !important;
        width: auto !important;
        max-width: 150px !important;
        object-fit: contain;
        flex-shrink: 0;
      }

      .partner-logo:nth-child(1) img,
      .partner-logo:nth-child(2) img {
        max-height: 62px !important;
        max-width: 180px !important;
      }

      /* Contato */
      .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contato-tabs {
        gap: 0;
      }

      .contato-tab {
        flex: 1;
        text-align: center;
        font-size: 11px;
        padding: 10px 12px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-input,
      .form-select,
      .form-ta {
        font-size: 16px;
      }

      /* evita zoom no iOS */

      /* Footer */
      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-brand {
        grid-column: span 1;
      }

      footer {
        padding: 40px 20px;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .footer-col h4 {
        margin-bottom: 12px;
      }

      /* Modal */
      .modal {
        padding: 28px 20px;
        max-height: 90vh;
      }

      .modal-title {
        font-size: 28px;
      }
    }
