    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(110deg, rgba(14, 21, 58, .9) 0%, rgba(14, 21, 58, .70) 55%, rgba(14, 21, 58, .28) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
      padding-top: 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
    }

    .hero-text {
      max-width: 800px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(253, 107, 52, .18);
      border: 1px solid rgba(253, 107, 52, .38);
      border-radius: var(--radius-full);
      padding: 6px 14px;
      margin-bottom: 1.5rem;
    }

    .hero-tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fd6b34;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(1.4)
      }
    }

    .hero-tag span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fd6b34;
    }

    .hero-headline {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(38px, 4.2vw, 56px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.025em;
      color: #fff;
      margin-bottom: 1.25rem;
    }

    .hero-headline em {
      font-style: normal;
      color: #fd6b34;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.65;
      color: rgba(255, 255, 255, .76);
      margin-bottom: 2.25rem;
      max-width: 520px;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-minimal-services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      column-gap: 2.5rem;
      row-gap: 1.5rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      animation: fadeUp .8s ease forwards 0.3s;
      opacity: 0;
      transform: translateY(15px);
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .minimal-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 16px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.95);
      letter-spacing: 0.02em;
    }

    .minimal-icon {
      color: var(--secondary-cta);
      display: flex;
      align-items: center;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      opacity: 0.7;
      transition: opacity 0.3s;
      cursor: pointer;
    }

    .hero-scroll:hover {
      opacity: 1;
    }

    .hero-scroll .mouse {
      width: 24px;
      height: 38px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 14px;
      position: relative;
    }

    .hero-scroll .wheel {
      width: 4px;
      height: 6px;
      background: var(--secondary-cta);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollWheel 1.5s infinite;
    }

    @keyframes scrollWheel {
      0% { transform: translate(-50%, 0); opacity: 1; }
      100% { transform: translate(-50%, 14px); opacity: 0; }
    }

    .hero-scroll span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
    }

    /* SOBRE */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      border-radius: var(--radius-xl);
    }

    .about-img-wrap picture,
    .about-img-wrap img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: var(--radius-xl);
    }

    .about-blob {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(253, 107, 52, .12);
      z-index: -1;
    }

    .about-stats {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      background: rgba(14, 21, 58, .93);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-lg);
      padding: 1rem 1.5rem;
      display: flex;
      gap: 1.5rem;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .about-stat {
      text-align: center;
    }

    .about-stat-num {
      font-family: 'Manrope', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #fd6b34;
      line-height: 1;
    }

    .about-stat-lbl {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 3px;
    }

    .about-text .headline-lg {
      color: var(--primary);
      margin-bottom: 1.25rem;
    }

    .about-text .body-lg {
      color: var(--on-surface-v);
      margin-bottom: 1rem;
    }

    .about-text .body-md {
      color: var(--on-surface-v);
      margin-bottom: 1.75rem;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .65rem;
      margin-bottom: 2rem;
      list-style: none;
      padding: 0;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: 14px;
      font-weight: 500;
      color: var(--on-surface);
    }

    .about-feature::before {
      content: '';
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(253, 107, 52, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fd6b34' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
      border: 1.5px solid rgba(253, 107, 52, .3);
    }

    /* SEGMENTOS DE ATUAÇÃO */
    .segments-section {
      background: #fff; /* Fundo absoluto limpo e premium */
      position: relative;
    }

    .segments-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .segments-header .headline-lg {
      color: var(--primary);
      margin-bottom: 1.25rem;
    }

    .segments-grid {
      display: grid !important;
      grid-template-columns: 1fr 1fr 1fr !important;
      gap: 1.5rem !important;
      width: 100% !important;
    }

    @media (max-width: 992px) {
      .segments-grid {
        grid-template-columns: 1fr 1fr !important;
      }
    }

    @media (max-width: 768px) {
      .segments-grid {
        grid-template-columns: 1fr !important;
      }
    }

    .segment-card {
      width: 100% !important;
      max-width: none !important;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: var(--radius-xl);
      padding: 2.5rem 2rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .segment-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(20, 30, 80, 0.15);
      background: var(--primary);
      border-color: var(--primary);
    }

    .seg-icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: rgba(253, 107, 52, 0.08);
      color: var(--secondary-cta);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .segment-card:hover .seg-icon-wrap {
      background: var(--secondary-cta);
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(253, 107, 52, 0.3);
    }

    .seg-title {
      font-family: 'Manrope', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
      line-height: 1.3;
      transition: color 0.4s ease;
    }

    .seg-desc {
      font-size: 15px;
      line-height: 1.6;
      color: var(--on-surface-v);
      margin: 0;
      transition: color 0.4s ease;
    }

    .segment-card:hover .seg-title,
    .segment-card:hover .seg-desc {
      color: #fff;
    }

    .segments-footer {
      text-align: center;
      margin-top: 4rem;
    }

    /* PILARES */
    .pillars-section {
      background: var(--surface-low);
    }

    .pillars-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .pillars-header .headline-lg {
      color: var(--primary);
      max-width: 560px;
      margin: 0 auto;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .pillar-card {
      background: #fff;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform .25s, box-shadow .25s;
    }

    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    }

    .pillar-card:hover .pillar-img {
      transform: scale(1.05);
    }

    .pillar-img {
      width: 100%;
      height: 185px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pillar-card picture {
      display: block;
      overflow: hidden;
    }

    .pillar-card picture img {
      width: 100%;
      height: 185px;
      object-fit: cover;
    }

    .pillar-body {
      padding: 2rem 1.5rem;
      background: #fff;
    }

    .pillar-header-inline {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 1rem;
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(253, 107, 52, 0.08);
      color: var(--secondary-cta);
      flex-shrink: 0;
    }

    .pillar-icon svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
    }

    .pillar-title {
      font-family: 'Manrope', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0;
      line-height: 1.3;
    }

    .pillar-desc {
      font-size: 14px;
      color: var(--on-surface-v);
      line-height: 1.65;
    }

    /* TECH */
    .tech-section {
      background: var(--primary-container);
      position: relative;
      overflow: hidden;
      padding: 6rem 0;
    }

    .tech-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: rgba(253, 107, 52, .03);
      pointer-events: none;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .tech-text .section-tag {
      color: #fd6b34;
      margin-bottom: 1.5rem;
    }

    .tech-text .section-tag::before {
      background: #fd6b34;
    }

    .tech-headline {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .tech-body {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .tech-certif {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2.5rem;
      list-style: none;
      padding: 0;
    }

    .certif-badge {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-left: 3px solid var(--secondary-cta);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: background 0.3s ease;
    }

    .certif-badge:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .certif-badge svg {
      color: var(--secondary-cta);
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .certif-badge span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #fff;
    }

    .tech-hero-stack {
      position: relative;
      width: 100%;
      height: 560px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .tech-hero-stack picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .tech-img-main {
      position: absolute;
      width: 80%;
      height: 90%;
      top: 0;
      right: 0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      z-index: 1;
      background: var(--primary-container);
    }

    .tech-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tech-img-sm {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 55%;
      height: 55%;
      border: 8px solid var(--primary-container);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      z-index: 2;
      background: var(--primary-container);
    }

    .tech-img-sm img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 991px) {
      .tech-grid {
        gap: 3rem;
      }
      .tech-hero-stack {
        height: 400px;
      }
      .tech-headline {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .tech-hero-stack {
        height: 320px;
        order: -1;
      }
      .tech-img-main {
        width: 85%;
        height: 85%;
      }
      .tech-img-sm {
        width: 65%;
        height: 50%;
      }
      .tech-body {
        max-width: 100%;
      }
    }

    /* SEGMENTOS — MARQUEE INFINITO */
    .segments-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .segments-header .headline-lg {
      color: var(--primary);
    }

    .segments-marquee {
      position: relative;
      overflow: hidden;
      margin-bottom: 3rem;
    }

    /* Fade nas bordas laterais para efeito premium */
    .segments-marquee::before,
    .segments-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .segments-marquee::before {
      left: 0;
      background: linear-gradient(to right, #fff 0%, transparent 100%);
    }

    .segments-marquee::after {
      right: 0;
      background: linear-gradient(to left, #fff 0%, transparent 100%);
    }

    .marquee-track {
      display: flex;
      align-items: center;
      width: 100%;
      overflow: hidden;
      padding: 0.5rem 0;
    }

    .marquee-track + .marquee-track {
      margin-top: 1rem;
    }

    .marquee-content {
      display: flex;
      gap: 1.25rem;
      white-space: nowrap;
      will-change: transform;
    }

    .marquee-left .marquee-content {
      animation: marquee-scroll-left 35s linear infinite;
    }

    .marquee-right .marquee-content {
      animation: marquee-scroll-right 40s linear infinite;
    }

    /* Pausa suave ao hover */
    .marquee-track:hover .marquee-content {
      animation-play-state: paused;
    }

    @keyframes marquee-scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes marquee-scroll-right {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    /* Pills */
    .segment-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 14px 28px;
      background: #fff;
      border: 1px solid var(--outline-v);
      border-radius: 100px;
      transition: all 0.3s ease;
      cursor: default;
      flex-shrink: 0;
    }

    .segment-pill:hover {
      background: var(--primary);
      border-color: var(--primary);
      transform: scale(1.05);
      box-shadow: 0 8px 24px rgba(29, 44, 111, 0.15);
    }

    .segment-pill:hover .pill-icon {
      color: rgba(255, 255, 255, 0.85);
    }

    .segment-pill:hover .pill-label {
      color: #fff;
    }

    .pill-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: color 0.3s ease;
    }

    .pill-icon svg {
      width: 22px;
      height: 22px;
    }

    .pill-label {
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--on-surface);
      letter-spacing: 0.01em;
      transition: color 0.3s ease;
    }

    .segments-cta {
      text-align: center;
      margin-top: 0.5rem;
    }

    /* CTA BANNER PREMIUM B2B */
    .cta-banner {
      margin: 6rem 0;
      position: relative;
    }

    .cta-wrapper {
      position: relative;
      /* Fundo branco e bordas removidos para um visual ainda mais minimalista */
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
    }

    .cta-left {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .cta-shape {
      position: absolute;
      bottom: 0%;
      left: 10%;
      width: 80%;
      height: 60%;
      background: rgba(253, 107, 52, 0.06);
      border-radius: 50%;
      filter: blur(40px);
      z-index: 1;
    }

    .cta-truck {
      position: relative;
      z-index: 2;
      width: 100%;
      height: auto;
      max-width: 650px;
      margin: -5% auto -8%;
      display: block;
      filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
      transform: scale(1.05);
    }

    .cta-right {
      padding: 4rem 0;
      position: relative;
      z-index: 3;
    }

    .cta-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(32px, 3.5vw, 42px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--primary);
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }

    .cta-desc {
      font-size: 17px;
      line-height: 1.65;
      color: var(--on-surface-v);
      margin-bottom: 2rem;
      max-width: 90%;
    }

    /* RESPONSIVE */
    @media (max-width:1024px) {
      .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .segments-marquee::before,
      .segments-marquee::after {
        width: 80px;
      }
    }

    @media (max-width:768px) {
      .hero-content {
        justify-content: flex-start;
        padding-top: 150px;
        padding-bottom: 3rem;
      }

      .hero-scroll {
        display: none;
      }

      .hero-actions {
        justify-content: center;
      }

      .about-text .btn,
      .tech-text .btn {
        display: flex;
        width: 100%;
        justify-content: center;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .tech-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .pillars-grid {
        grid-template-columns: 1fr 1fr;
      }

      .segments-marquee::before,
      .segments-marquee::after {
        width: 40px;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .cta-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .cta-wrapper {
        text-align: center;
      }

      .cta-truck {
        width: 100%;
        max-width: 450px;
        margin: -10% auto 0;
      }
      
      .cta-shape {
        width: 300px;
        height: 300px;
        filter: blur(30px);
      }
      
      .cta-banner {
        margin: 5rem 0 3rem;
      }

      .cta-right {
        padding: 2rem 0 3.5rem;
      }
      
      .cta-desc {
        max-width: 100%;
        margin: 0 auto 2rem;
      }
    }

    @media (max-width:480px) {
      .pillars-grid {
        grid-template-columns: 1fr;
      }

      .segment-pill {
        padding: 10px 20px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .tech-certif {
        flex-direction: column;
      }
    }

    /* ── Home Blog Preview ──────────────────────────────────────── */
    .home-blog {
      background: #f8f9fb;
    }

    .home-blog-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .home-blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .home-blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.05);
      transition: transform .22s, box-shadow .22s;
    }

    .home-blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 24px rgba(0,0,0,.1);
    }

    .home-blog-card-link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
      text-decoration: none;
    }

    .home-blog-img {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #eef0f4;
      flex-shrink: 0;
    }

    .home-blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .home-blog-card:hover .home-blog-img img {
      transform: scale(1.05);
    }

    .home-blog-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b0b8c4;
    }

    .home-blog-body {
      padding: 1.25rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: .45rem;
      flex: 1;
    }

    .home-blog-date {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--primary, #fd6b34);
    }

    .home-blog-title {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--on-surface, #0e153a);
      margin: 0;
    }

    .home-blog-excerpt {
      font-size: .875rem;
      color: var(--on-surface-v, #6b7280);
      line-height: 1.6;
      margin: 0;
      flex: 1;
    }

    .home-blog-read {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      font-size: .8rem;
      font-weight: 700;
      color: var(--primary, #fd6b34);
      margin-top: .5rem;
    }

    .home-blog-footer {
      text-align: center;
    }

    @media (max-width: 900px) {
      .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 580px) {
      .home-blog-grid {
        grid-template-columns: 1fr;
      }
    }
