    /* VARIABLES & RESET (Light/White Theme with #494949 Elements) */
    :root {
      --bg-light: #ffffff;
      --bg-card: #494949;
      --brand-orange: #f96e1d;
      --brand-orange-hover: #fa9153;
      --text-dark: #0f172a;
      --text-muted: #475569;
      --text-card-light: #ffffff;
      --text-card-muted: #cbd5e1;
      --border-color: rgba(15, 23, 42, 0.08);
      --glass-bg: rgba(73, 73, 73, 0.9);
      --glass-border: rgba(255, 255, 255, 0.08);
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-light);
      color: var(--text-dark);
      font-family: 'Outfit', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* TYPOGRAPHY */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    /* HEADER / NAVBAR (Dark gray background to support white logo text) */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      border-bottom: none;
      padding: 24px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
      box-shadow: none;
    }

    .navbar.scrolled {
      padding: 12px 60px;
      background: rgba(73, 73, 73, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: rgba(255, 255, 255, 0.08) 1px solid;
      box-shadow: var(--shadow-sm);
    }

    .nav-logo {
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 38px;
      width: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-link {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff;
      opacity: 0.85;
      transition: var(--transition);
    }

    .nav-link:hover, .nav-link.active {
      color: var(--brand-orange);
      opacity: 1;
    }

    .nav-cta {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--text-card-light);
      padding: 10px 22px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }

    .nav-cta:hover {
      background-color: var(--brand-orange);
      border-color: var(--brand-orange);
      transform: translateY(-2px);
    }

    /* HERO SECTION (Immersive Dark Theme styled after reference) */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end; /* Empurra o conteúdo para o fundo */
      justify-content: center;
      padding: 140px 60px 40px 60px; /* Reduzido para descer mais o conteúdo */
      background-image: linear-gradient(135deg, rgba(73, 73, 73, 0.6) 0%, rgba(73, 73, 73, 0.3) 50%, rgba(73, 73, 73, 0.75) 100%), 
                        url('../img/hero_bg.png?v=3');
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
      text-align: center;
    }

    .hero-content {
      max-width: 900px;
      width: 100%;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      color: #ffffff;
      transform: translateY(20px);
      opacity: 0;
      animation: slideUpFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249, 110, 29, 0.15);
      border: 1px solid rgba(249, 110, 29, 0.3);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-orange);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .hero-badge-icon {
      font-weight: 900;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .hero-title span {
      color: var(--brand-orange);
    }

    .hero-subtitle {
      font-size: 22px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.4;
      max-width: 800px;
    }

    .hero-desc {
      font-size: 16px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      max-width: 750px;
      margin-bottom: 10px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      width: 100%;
    }

    .hero-btn-solid {
      background-color: var(--brand-orange);
      color: #ffffff;
      padding: 16px 36px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 25px rgba(249, 110, 29, 0.4);
      transition: var(--transition);
      border: 1px solid var(--brand-orange);
    }

    .hero-btn-solid:hover {
      background-color: var(--brand-orange-hover);
      border-color: var(--brand-orange-hover);
      box-shadow: 0 12px 35px rgba(249, 110, 29, 0.6);
      transform: translateY(-3px);
    }

    .hero-btn-outline {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      padding: 16px 36px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }

    .hero-btn-outline:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
    }

    /* SIDE DOTS NAVIGATION */
    .side-dots {
      position: fixed;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .side-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .side-dot:hover {
      background: var(--brand-orange);
      transform: scale(1.2);
    }

    .side-dot.active {
      background: var(--brand-orange);
      box-shadow: 0 0 10px var(--brand-orange);
      transform: scale(1.3);
    }

    /* COMMON SECTION STYLING */
    section {
      padding: 100px 60px;
      position: relative;
    }

    .section-meta {
      font-size: 12px;
      font-weight: 800;
      color: var(--brand-orange);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
      display: block;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 20px;
      max-width: 800px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 50px;
      max-width: 700px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-container {
      display: flex;
      justify-content: center;
      margin-top: 50px;
    }

    .secondary-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      color: var(--text-dark);
      border: 2px solid var(--bg-card);
      padding: 14px 30px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }

    .secondary-btn:hover {
      background-color: var(--brand-orange);
      border-color: var(--brand-orange);
      color: var(--text-card-light);
      transform: translateY(-2px);
    }

    /* PROJECTS SPLIT SECTION (React-style Split Layout) */
    .projects-split-section {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 60px;
      align-items: center;
      margin-top: 30px;
    }

    .projects-content-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .projects-content-left .primary-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: var(--brand-orange);
      color: #ffffff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 14px;
      transition: var(--transition);
      box-shadow: 0 8px 25px rgba(249, 110, 29, 0.3);
    }

    .projects-content-left .primary-btn:hover {
      background-color: var(--brand-orange-hover);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(249, 110, 29, 0.4);
    }

    .projects-content-left .primary-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.5;
      fill: none;
    }

    .projects-gallery-right {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 160px);
      gap: 15px;
    }

    .gallery-item-split {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      cursor: pointer;
    }

    .gallery-item-split img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item-split:hover img {
      transform: scale(1.05);
    }

    /* Primeira foto ocupa 2 linhas na coluna 1 */
    .tall-item {
      grid-row: span 2;
    }

    @media (max-width: 991px) {
      .projects-split-section {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .projects-gallery-right {
        grid-template-rows: repeat(3, 130px);
      }
    }

    /* SOLUTIONS SECTION (Photo Grid) */
    .solutions-photo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
    }

    .solution-photo-card {
      position: relative;
      width: calc(33.333% - 14px); /* 3 cards na primeira linha */
      height: 340px; /* Altura fixa para manter formato wide */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Tablet 2 in a row */
    @media (max-width: 991px) {
      .solution-photo-card {
        width: calc(50% - 10px);
      }
    }

    /* Mobile 1 in a row */
    @media (max-width: 767px) {
      .solution-photo-card {
        width: 100%;
        height: 300px;
      }
    }

    .solution-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .solution-photo-card:hover img {
      transform: scale(1.05);
    }

    .solution-photo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
      padding: 60px 20px 25px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 70%;
    }

    .solution-photo-overlay h3 {
      color: var(--brand-orange);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .solution-photo-overlay p {
      color: #ffffff;
      font-size: 13px;
      margin: 0;
      line-height: 1.4;
    }

    /* FOOTER (Using #494949) */
    .footer {
      background-color: var(--bg-card);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px;
      text-align: center;
      color: var(--text-card-light);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-logo img {
      height: 48px;
      width: auto;
      object-fit: contain;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      list-style: none;
      margin-bottom: 30px;
    }

    .footer-link {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-card-muted);
      transition: var(--transition);
    }

    .footer-link:hover {
      color: var(--brand-orange);
    }

    .footer-info {
      font-size: 12px;
      color: var(--text-card-muted);
      margin-bottom: 15px;
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.25);
    }

    /* VIDEO MODAL */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.95);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      width: 90%;
      max-width: 900px;
      aspect-ratio: 16/9;
      background-color: #000;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: -45px;
      right: 0;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 30px;
      cursor: pointer;
    }

    .modal-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* TOAST / ALERTS */
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 15px 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-lg);
      transform: translateY(100px);
      opacity: 0;
      transition: var(--transition);
      z-index: 3000;
      color: var(--text-card-light);
    }

    .toast.active {
      transform: translateY(0);
      opacity: 1;
    }

    .toast.success {
      border-left: 4px solid #4CAF50;
    }

    .toast.error {
      border-left: 4px solid var(--brand-orange);
    }

    .toast-icon {
      font-weight: bold;
    }

    .toast.success .toast-icon { color: #4CAF50; }
    .toast.error .toast-icon { color: var(--brand-orange); }

    /* LOADING SPINNER */
    .spinner {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }

    /* ANIMATIONS */
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    @keyframes slideUpFade {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    /* POR QUE RS SECTION (Usa cores oficiais do Design System) */
    .why-rs-section {
      background-color: var(--bg-light); /* Branco Puro #ffffff */
      color: var(--text-dark);
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border-color);
    }

    .why-rs-section .section-meta {
      color: var(--brand-orange);
    }

    .why-rs-section .section-title {
      color: var(--text-dark);
      max-width: 800px;
      margin-bottom: 20px;
    }

    .why-rs-section .section-desc {
      color: var(--text-muted);
      max-width: 700px;
      margin-bottom: 50px;
    }

    /* 3-Card Responsive Grid */
    .why-rs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Glowing Card Wrapper */
    .glowing-card {
      position: relative;
      background: rgba(73, 73, 73, 0.15); /* Cinza Estrutural suave para borda */
      border-radius: 20px;
      padding: 1px; /* The border width */
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .glowing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(249, 110, 29, 0.12);
    }

    /* Glowing border overlay using CSS variables set by JS */
    .glowing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      pointer-events: none;
      background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(249, 110, 29, 0.65) 0%, /* Brand Orange */
        rgba(250, 145, 83, 0.3) 35%,
        rgba(250, 145, 83, 0.1) 60%,
        transparent 80%
      );
      opacity: var(--glow-opacity, 0);
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    /* Inner content area */
    .glowing-card-inner {
      position: relative;
      background: var(--bg-card); /* Cinza Médio / Estrutural #494949 */
      border-radius: 19px;
      padding: 35px;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 20px;
      z-index: 2;
      box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.15);
    }

    /* Glowing Card Content Styles */
    .glowing-card-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background-color: rgba(249, 110, 29, 0.1);
      border: 1px solid rgba(249, 110, 29, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-orange);
      transition: all 0.3s ease;
    }

    .glowing-card:hover .glowing-card-icon-box {
      background-color: var(--brand-orange);
      color: #ffffff;
      box-shadow: 0 0 15px rgba(249, 110, 29, 0.4);
    }

    .glowing-card-icon-box svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    .glowing-card-inner h3 {
      font-size: 19px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.3px;
    }

    .glowing-card-inner p {
      font-size: 14px;
      color: #a3a3a3;
      line-height: 1.6;
    }

    /* RESPONSIVENESS */
    @media (max-width: 1200px) {
      .hero {
        padding: 120px 40px 80px 40px;
      }
      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Why RS Responsive Grid */
      .why-rs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .navbar {
        padding: 20px 30px;
      }
      .navbar.scrolled {
        padding: 10px 30px;
      }
      .nav-links {
        display: none;
      }
      .hero {
        padding: 100px 24px 60px 24px;
      }
      .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
      }
      .hero-subtitle {
        font-size: 18px;
      }
      .hero-desc {
        font-size: 14px;
      }
      .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
      }
      .hero-btn-solid, .hero-btn-outline {
        width: 100%;
        padding: 14px 20px;
      }
      section {
        padding: 80px 30px;
      }
      .why-rs-grid {
        grid-template-columns: 1fr;
      }
      .solutions-grid {
        grid-template-columns: 1fr;
      }
      .diff-grid {
        grid-template-columns: 1fr;
      }
      .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .videos-grid {
        grid-template-columns: 1fr;
      }
      .budget-form {
        grid-template-columns: 1fr;
      }
      .form-group.full-width, .form-group.cnpj-group, .form-submit-btn {
        grid-column: span 1;
      }
      .form-group.cnpj-group {
        grid-template-columns: 1fr;
      }
      .about-split {
        grid-template-columns: 1fr;
      }
      .about-img-box {
        height: 300px;
      }
      .why-rs-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .why-rs-section {
        padding: 80px 30px;
      }
    }
    /* JORNADA SECTION (Horizontal Pin Scroll) - Usa cores oficiais do Design System */
    .journey-container {
      position: relative;
      height: 500vh; /* Scroll duration increased for the extra CTA step */
      background: var(--bg-light); /* Branco Puro #ffffff */
      padding: 0;
      border-bottom: 1px solid var(--border-color);
    }

    .journey-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 0;
      box-sizing: border-box;
      background: var(--bg-light); /* Branco Puro #ffffff */
    }

    .journey-header {
      text-align: center;
      margin-bottom: 50px;
      padding: 0 60px;
      z-index: 10;
    }

    .journey-track-wrapper {
      position: relative;
      width: 100%;
      overflow: visible;
      padding: 20px 0;
    }

    .journey-timeline-bg {
      position: absolute;
      top: 42px;
      left: 10%;
      width: 80%;
      height: 4px;
      background: rgba(15, 23, 42, 0.08);
      z-index: 1;
      border-radius: 2px;
    }

    .journey-timeline-progress {
      position: absolute;
      top: 42px;
      left: 10%;
      width: 0%; /* Dynamic fill */
      height: 4px;
      background: var(--brand-orange);
      box-shadow: 0 0 12px var(--brand-orange);
      z-index: 2;
      border-radius: 2px;
      transition: width 0.1s cubic-bezier(0.1, 0.8, 0.2, 1);
    }

    .journey-track {
      display: flex;
      gap: 60px;
      padding: 0 10%;
      width: max-content;
      will-change: transform;
      z-index: 3;
      position: relative;
    }

    .journey-step {
      width: 320px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      opacity: 0.25;
      transform: scale(0.9);
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .journey-step.active {
      opacity: 1;
      transform: scale(1.05);
    }

    .journey-step.completed {
      opacity: 0.7;
      transform: scale(1);
    }

    .journey-indicator {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-light); /* Branco Puro #ffffff */
      border: 2px solid rgba(15, 23, 42, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: rgba(15, 23, 42, 0.4);
      margin-bottom: 25px;
      position: relative;
      z-index: 4;
      transition: all 0.3s ease;
    }

    .journey-step.active .journey-indicator {
      background: var(--brand-orange);
      border-color: var(--brand-orange);
      color: #ffffff;
      box-shadow: 0 0 20px rgba(249, 110, 29, 0.5);
    }

    .journey-step.completed .journey-indicator {
      background: var(--brand-orange);
      border-color: var(--brand-orange);
      color: #ffffff;
    }

    .journey-indicator .check-icon {
      display: none;
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
    }

    .journey-step.completed .journey-indicator span {
      display: none;
    }

    .journey-step.completed .journey-indicator .check-icon {
      display: block;
    }

    .journey-card {
      background: var(--bg-card); /* Cinza Médio / Estrutural #494949 */
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      width: 100%;
      min-height: 220px; /* Slight height increase for icons */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; /* Center align for desktop timeline view */
      box-sizing: border-box;
    }

    .journey-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background-color: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .journey-step.active .journey-card-icon {
      background-color: var(--brand-orange);
      border-color: var(--brand-orange);
      color: #ffffff;
      box-shadow: 0 0 15px rgba(249, 110, 29, 0.4);
    }

    .journey-card-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    .journey-step.active .journey-card {
      border-color: rgba(249, 110, 29, 0.4);
      box-shadow: 0 15px 35px rgba(249, 110, 29, 0.15);
    }

    .journey-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }

    .journey-step.active .journey-card h3 {
      color: var(--brand-orange);
    }

    .journey-card p {
      font-size: 14px;
      color: var(--text-card-muted);
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .journey-container {
        height: auto !important;
        padding: 80px 20px;
      }
      .journey-sticky {
        position: relative !important;
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
      }
      .journey-track-wrapper {
        padding: 0;
      }
      .journey-timeline-bg, .journey-timeline-progress {
        display: none;
      }
      .journey-track {
        flex-direction: column;
        width: 100% !important;
        transform: none !important;
        padding: 0;
        gap: 30px;
      }
      .journey-step {
        width: 100% !important;
        flex-direction: column;
        text-align: left;
        opacity: 1 !important;
        transform: none !important;
        gap: 0;
        align-items: center;
      }
      .journey-indicator {
        margin-bottom: -22px;
        z-index: 2;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 16px;
        background: var(--brand-orange) !important;
        border-color: var(--brand-orange) !important;
        color: #ffffff !important;
      }
      .journey-card {
        min-height: auto;
        padding: 35px 25px 25px 25px;
        align-items: flex-start !important;
        width: 100%;
      }
    }

    /* Logos Carousel Section */
    .logos-carousel-section {
      background: #ffffff;
      padding: 60px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .logos-title {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #999999;
      margin-bottom: 30px;
      text-align: center;
    }

    .logos-slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 10px 0;
    }

    /* Gradient overlay for fade effects on the left and right */
    .logos-slider-container::before,
    .logos-slider-container::after {
      content: '';
      position: absolute;
      top: 0;
      width: 150px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .logos-slider-container::before {
      left: 0;
      background: linear-gradient(to right, #ffffff, transparent);
    }

    .logos-slider-container::after {
      right: 0;
      background: linear-gradient(to left, #ffffff, transparent);
    }

    .logos-track {
      display: flex;
      width: max-content;
      animation: logo-scroll 30s linear infinite;
    }

    .logos-group {
      display: flex;
      align-items: center;
      gap: 80px;
      padding-right: 80px; /* Essential to maintain the same gap between the two groups */
    }

    .logo-item {
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0.45;
      transition: all 0.3s ease;
      filter: grayscale(1);
    }

    .logo-item:hover {
      opacity: 0.95;
      filter: grayscale(0);
      transform: translateY(-2px);
    }

    .logo-item svg,
    .logo-item img {
      height: 38px;
      width: auto;
      object-fit: contain;
      color: var(--text-dark);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .logo-item span {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-dark);
    }

    @keyframes logo-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* VERTICAL VIDEOS SECTION */
    .vertical-videos-section {
      background-color: var(--bg-card);
      background-image: radial-gradient(circle at 50% 50%, rgba(249, 110, 29, 0.06) 0%, transparent 60%);
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .vertical-videos-section .section-title,
    .vertical-videos-section .section-desc {
      color: var(--text-card-light);
    }

    .vertical-videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 950px; /* Reduzido de 1200px para que a altura do vídeo caiba na tela */
      margin: 50px auto 0;
    }

    .vertical-video-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 9 / 16;
      background-color: #161616;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .vertical-video-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(249, 110, 29, 0.4);
      box-shadow: 0 20px 40px rgba(249, 110, 29, 0.15);
    }

    .video-container {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: filter 0.5s ease;
    }

    .video-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      pointer-events: none;
      z-index: 2;
    }

    .video-tag {
      align-self: flex-start;
      background-color: var(--brand-orange);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 100px;
      letter-spacing: 1px;
      box-shadow: 0 4px 10px rgba(249, 110, 29, 0.3);
    }

    .video-card-info {
      margin-top: auto;
    }

    .video-card-info h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 8px 0;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .video-card-info p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      line-height: 1.5;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .sound-control-btn {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .sound-control-btn:hover {
      background: var(--brand-orange);
      border-color: var(--brand-orange);
      transform: scale(1.1);
    }

    .sound-control-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: #ffffff;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .sound-control-btn.unmuted svg .sound-wave {
      opacity: 1;
    }

    .sound-control-btn svg .sound-wave {
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }

    @media (max-width: 992px) {
      .vertical-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 600px) {
      .vertical-videos-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 24px;
        margin: 40px auto 0;
      }
      .vertical-videos-section {
        padding: 60px 15px;
      }
    }

    /* WHATSAPP FLOATING BUTTON */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      animation: pulse-wa 2s infinite;
    }

    .whatsapp-float:hover {
      background-color: #128C7E;
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

    @keyframes pulse-wa {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    @media screen and (max-width: 768px) {
      .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
      }
      
      .whatsapp-float svg {
        width: 28px;
        height: 28px;
      }
    }

    /* CTA FINAL DA JORNADA */
    .cta-box-section {
      padding: 100px 20px;
      display: flex;
      justify-content: center;
      background-color: var(--bg-light); /* Integrating with journey background */
    }

    .cta-box-container {
      max-width: 1000px;
      width: 100%;
      background: linear-gradient(to bottom, #1e293b, var(--bg-card));
      border-radius: 20px;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(249, 110, 29, 0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .animate-on-scroll.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .cta-box-badge {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 8px 24px;
      border-radius: 50px;
      background: rgba(249, 110, 29, 0.1);
      border: 1px solid rgba(249, 110, 29, 0.3);
      backdrop-filter: blur(5px);
      margin-bottom: 20px;
    }

    .cta-box-badge p {
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
      text-align: center;
      margin: 0;
    }

    .cta-box-title {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.2;
      max-width: 600px;
      background: linear-gradient(to right, #ffffff, #f96e1d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 30px;
    }

    .cta-box-btn {
      padding: 14px 40px;
      background-color: var(--brand-orange);
      color: #fff;
      border-radius: 50px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(249, 110, 29, 0.4);
      text-decoration: none;
    }

    .cta-box-btn:hover {
      background-color: #e05a12;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(249, 110, 29, 0.6);
    }

    @media (max-width: 768px) {
      .cta-box-title { font-size: 28px; }
      .cta-box-container { padding: 40px 20px; }
      .footer-links { display: none; }
      
      .nav-cta {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0px;
        white-space: nowrap;
      }

      /* Correção para o Bug de Background no Mobile (iOS e Android) */
      .hero {
        background-attachment: scroll !important;
        background-position: center top !important;
      }
    }

    @media (min-width: 1024px) {
      .hero {
        background-attachment: fixed !important;
      }
    }
