    /* =========================================
       RESET & BASE
    ========================================= */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Color tokens */
      --color-bg:          #080f1e;
      --color-bg-2:        #0d1729;
      --color-bg-card:     #111d33;
      --color-bg-card-2:   #152040;
      --color-border:      rgba(99, 160, 255, 0.12);
      --color-border-2:    rgba(99, 160, 255, 0.22);
      --color-primary:     #1e6eff;
      --color-primary-2:   #3b8bff;
      --color-primary-glow:rgba(30, 110, 255, 0.25);
      --color-accent:      #00d4ff;
      --color-accent-dim:  rgba(0, 212, 255, 0.15);
      --color-text:        #f0f4ff;
      --color-text-2:      #8fa3c8;
      --color-text-3:      #5a7399;
      --color-white:       #ffffff;
      --color-whatsapp:    #25d366;
      --color-whatsapp-2:  #1aab52;
      --color-insta-start: #f09433;
      --color-insta-end:   #e6683c;
      --color-tiktok:      #1a1a2e;
      --color-facebook:    #1877f2;

      /* Spacing / Radius */
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  20px;
      --radius-xl:  28px;
      --radius-full:9999px;

      /* Typography */
      --font-heading: 'Plus Jakarta Sans', sans-serif;
      --font-body:    'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* =========================================
       SCROLLBAR
    ========================================= */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--color-bg); }
    ::-webkit-scrollbar-thumb { background: var(--color-bg-card-2); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

    /* =========================================
       GRID LINES BG DECORATION
    ========================================= */
    .bg-grid {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        linear-gradient(rgba(30,110,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,110,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .bg-glow-1 {
      position: fixed;
      top: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(30,110,255,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .bg-glow-2 {
      position: fixed;
      bottom: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* =========================================
       CONTAINER
    ========================================= */
    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* =========================================
       HEADER / NAV
    ========================================= */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: background 0.3s, box-shadow 0.3s;
    }

    header.scrolled {
      background: rgba(8, 15, 30, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--color-border);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--color-text);
    }

    .nav-logo img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--color-primary);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--color-text-2);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--color-text);
    }

    .nav-cta {
      background: var(--color-whatsapp);
      color: #fff !important;
      padding: 9px 20px;
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: 0.85rem !important;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--color-whatsapp-2) !important;
      transform: translateY(-1px);
      color: #fff !important;
    }

    .nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 15, 30, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open {
      display: flex;
    }
    .mobile-menu a {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--color-primary); }
    .mobile-menu .mobile-cta {
      background: var(--color-whatsapp);
      color: #fff;
      padding: 14px 36px;
      border-radius: var(--radius-full);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
    }
    .mobile-close {
      position: absolute;
      top: 22px;
      right: 24px;
      background: none;
      border: none;
      color: var(--color-text-2);
      cursor: pointer;
      font-size: 1.5rem;
      line-height: 1;
    }

    /* =========================================
       SECTION LABEL
    ========================================= */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-primary-2);
      background: rgba(30,110,255,0.1);
      border: 1px solid rgba(30,110,255,0.2);
      padding: 5px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--color-primary-2);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* =========================================
       BUTTONS
    ========================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-family: var(--font-body);
      font-weight: 600;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
      border: none;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-lg {
      font-size: 1rem;
      padding: 16px 36px;
    }
    .btn-md {
      font-size: 0.9rem;
      padding: 12px 26px;
    }
    .btn-sm {
      font-size: 0.82rem;
      padding: 9px 20px;
    }
    .btn-primary {
      background: var(--color-primary);
      color: #fff;
      box-shadow: 0 4px 24px var(--color-primary-glow);
    }
    .btn-primary:hover {
      background: var(--color-primary-2);
      box-shadow: 0 6px 32px var(--color-primary-glow);
    }
    .btn-whatsapp {
      background: var(--color-whatsapp);
      color: #fff;
      box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    }
    .btn-whatsapp:hover {
      background: var(--color-whatsapp-2);
      box-shadow: 0 6px 28px rgba(37,211,102,0.4);
    }
    .btn-outline {
      background: transparent;
      color: var(--color-text);
      border: 1px solid var(--color-border-2);
    }
    .btn-outline:hover {
      background: var(--color-bg-card);
      border-color: var(--color-primary);
    }

    .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* =========================================
       HERO
    ========================================= */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 120px 0 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.18;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(8,15,30,0.92) 0%, rgba(8,15,30,0.6) 60%, rgba(8,15,30,0.85) 100%);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-content {
      position: relative;
    }

    .hero-img-col {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    /* Versão mobile da imagem — escondida no desktop */
    .hero-img-mobile { display: none; }

    .hero-img-square {
      width: 100%;
      max-width: 460px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border-2);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    }

    /* Carrossel hero */
    .hero-carousel {
      position: relative;
      overflow: hidden;
    }
    .hero-carousel-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.9s ease;
      border-radius: inherit;
    }
    .hero-carousel-slide.active {
      opacity: 1;
    }
    .hero-carousel-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 3;
    }
    .hero-carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      border: 1.5px solid rgba(255, 255, 255, 0.5);
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
    }
    .hero-carousel-dot.active {
      background: #fff;
      border-color: #fff;
      transform: scale(1.25);
    }
    .hero-carousel-dot:hover:not(.active) {
      background: rgba(255, 255, 255, 0.65);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,211,102,0.1);
      border: 1px solid rgba(37,211,102,0.25);
      color: #25d366;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.03em;
    }
    .hero-badge span { width:8px; height:8px; background:#25d366; border-radius:50%; animation: pulse 1.8s infinite; display:block; }
    @keyframes pulse {
      0%, 100% { opacity:1; transform:scale(1); }
      50% { opacity:0.5; transform:scale(0.7); }
    }

    .hero-title {
      font-family: var(--font-heading);
      /*font-size: clamp(2.4rem, 6vw, 4rem);*/
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--color-white);
      margin-bottom: 20px;
    }
    .hero-title .accent {
      color: var(--color-accent);
      position: relative;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      color: var(--color-text-2);
      max-width: 520px;
      line-height: 1.65;
      margin-bottom: 36px;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-bottom: 40px;
      /*flex-wrap: wrap; ESTAT EMBAIXO DO OUTRO */
    }
    .hero-stat-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .hero-stat-num {
      font-family: var(--font-heading);
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--color-white);
      letter-spacing: -0.02em;
    }
    .hero-stat-num span { color: var(--color-accent); }
    .hero-stat-label {
      font-size: 0.78rem;
      color: var(--color-text-3);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-trust {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-trust-stars {
      display: flex;
      gap: 3px;
    }
    .hero-trust-stars svg { width:16px; height:16px; fill:#f59e0b; color:#f59e0b; }
    .hero-trust-text {
      font-size: 0.82rem;
      color: var(--color-text-3);
    }
    .hero-trust-text strong { color: var(--color-text-2); }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      color: var(--color-text-3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 1;
      animation: bounceScroll 2s infinite;
    }
    .hero-scroll svg { width:20px; height:20px; color: var(--color-text-3); }
    @keyframes bounceScroll {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* =========================================
       SOCIAL PROOF BAR
    ========================================= */
    #social-proof-bar {
      background: var(--color-bg-card);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      padding: 20px 0;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .proof-track {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: scrollTrack 20s linear infinite;
      width: max-content;
    }

    .proof-track:hover { animation-play-state: paused; }

    @keyframes scrollTrack {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .proof-item svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }
    .proof-item span {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text-2);
    }
    .proof-item strong {
      color: var(--color-text);
    }
    .proof-sep {
      width: 4px;
      height: 4px;
      background: var(--color-border-2);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* =========================================
       SERVICES
    ========================================= */
    #servicos {
      padding: 96px 0;
      position: relative;
      background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(30,110,255,0.09) 0%, transparent 70%),
        var(--color-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--color-white);
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--color-text-2);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--color-primary);
      box-shadow: 0 16px 48px rgba(30,110,255,0.15);
    }

    .service-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .service-card:hover .service-card-img {
      transform: scale(1.04);
    }

    .service-card-body {
      padding: 24px;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      background: rgba(30,110,255,0.12);
      border: 1px solid rgba(30,110,255,0.2);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .service-icon svg { width: 22px; height: 22px; color: var(--color-primary-2); }

    .service-name {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 8px;
    }

    .service-desc {
      font-size: 0.875rem;
      color: var(--color-text-2);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .service-cta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-whatsapp);
      transition: gap 0.2s;
    }
    .service-card:hover .service-cta { gap: 10px; }
    .service-cta svg { width:16px; height:16px; }

    .services-cta-wrap {
      text-align: center;
      margin-top: 48px;
    }

    /* =========================================
       VÍDEOS
    ========================================= */
    #videos {
      padding: 96px 0;
      background:
        radial-gradient(ellipse 60% 45% at 80% 50%, rgba(0,212,255,0.07) 0%, transparent 70%),
        var(--color-bg-2);
      position: relative;
      z-index: 1;
    }
    #videos::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }
    #videos::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .video-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .video-card:hover {
      transform: translateY(-6px);
      border-color: var(--color-primary);
      box-shadow: 0 16px 48px rgba(30,110,255,0.15);
    }

    .video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      background: #000;
    }
    .video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-card-body {
      padding: 22px 24px;
    }
    .video-title {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 8px;
      text-align: center;
    }
    .video-desc {
      font-size: 0.875rem;
      color: var(--color-text-2);
      line-height: 1.6;
      text-align: center;
    }

    /* =========================================
       HOW IT WORKS
    ========================================= */
    #como-funciona {
      padding: 96px 0;
      background:
        radial-gradient(ellipse 70% 40% at 20% 100%, rgba(30,110,255,0.10) 0%, transparent 70%),
        var(--color-bg-2);
      position: relative;
      z-index: 1;
    }
    #como-funciona::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }
    #como-funciona::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.6% + 20px);
      right: calc(16.6% + 20px);
      height: 1px;
      border-top: 2px dashed rgba(30,110,255,0.2);
      z-index: 0;
    }

    .step-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 72px;
      height: 72px;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--color-primary-2);
      position: relative;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .step-card:hover .step-num {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      box-shadow: 0 0 32px var(--color-primary-glow);
    }

    .step-title {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-white);
    }

    .step-desc {
      font-size: 0.875rem;
      color: var(--color-text-2);
      line-height: 1.6;
    }

    /* =========================================
       DIFERENCIAIS
    ========================================= */
    #diferenciais {
      padding: 96px 0;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .diff-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .diff-card:hover {
      border-color: var(--color-primary);
      box-shadow: 0 8px 32px rgba(30,110,255,0.1);
      transform: translateY(-2px);
    }

    .diff-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(30,110,255,0.1);
      border: 1px solid rgba(30,110,255,0.18);
    }
    .diff-icon svg { width: 24px; height: 24px; color: var(--color-primary-2); }

    .diff-text h3 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 6px;
    }
    .diff-text p {
      font-size: 0.85rem;
      color: var(--color-text-2);
      line-height: 1.55;
    }

    .diff-aside {
      background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-card-2) 100%);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 24px;
    }

    .diff-aside-quote {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--color-white);
      line-height: 1.4;
    }

    .diff-aside-quote span { color: var(--color-accent); }

    .diff-aside-author {
      font-size: 0.82rem;
      color: var(--color-text-3);
    }

    .diff-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 32px;
      align-items: start;
    }

    /* =========================================
       TESTIMONIALS
    ========================================= */
    #depoimentos {
      padding: 96px 0;
      background:
        radial-gradient(ellipse 65% 50% at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
        var(--color-bg-2);
      position: relative;
      z-index: 1;
    }
    #depoimentos::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }
    #depoimentos::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 26px;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .review-card:hover {
      border-color: var(--color-border-2);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }
    .review-stars svg { width:15px; height:15px; fill:#f59e0b; color:#f59e0b; }

    .review-text {
      font-size: 0.9rem;
      color: var(--color-text-2);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--color-bg-card-2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--color-primary-2);
      flex-shrink: 0;
    }
    .review-name {
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--color-white);
    }
    .review-loc {
      font-size: 0.75rem;
      color: var(--color-text-3);
    }

    /* =========================================
       DEPOIMENTOS EM VÍDEO (section dedicada)
    ========================================= */
    #video-depoimentos {
      padding: 96px 0;
      background:
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(30,110,255,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 20% 100%, rgba(0,212,255,0.06) 0%, transparent 70%),
        var(--color-bg);
      position: relative;
      z-index: 1;
    }
    #video-depoimentos::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }
    #video-depoimentos::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-2), transparent);
    }

    /* ---- Testimonial videos grid ---- */
    .testimonial-videos-grid {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .testimonial-video-card {
      width: 260px;
      flex-shrink: 0;
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      overflow: hidden;
      background: var(--color-bg-card);
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .testimonial-video-card:hover {
      transform: translateY(-6px);
      border-color: var(--color-primary);
      box-shadow: 0 16px 48px rgba(30,110,255,0.15);
    }
    .testimonial-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
    }
    .testimonial-video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
      margin-left: auto;
      margin-right: auto;
      width: fit-content;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-full);
      padding: 10px 22px;
    }
    .google-badge svg { width: 18px; height: 18px; }
    .google-badge span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-text);
    }
    .google-badge .star-row {
      display: flex;
      gap: 2px;
    }
    .google-badge .star-row svg { width:14px; height:14px; fill:#f59e0b; }

    /* =========================================
       QUEM SOMOS
    ========================================= */
    #quem-somos {
      padding: 96px 0;
      background:
        radial-gradient(ellipse 55% 45% at 100% 50%, rgba(0,212,255,0.07) 0%, transparent 70%),
        var(--color-bg);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }
    .about-carousel {
      width: 100%;
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      overflow: hidden;
      position: relative;
    }
    .about-carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .about-carousel-slide {
      width: 100%;
      flex-shrink: 0;
      height: 440px;
      object-fit: cover;
      display: block;
    }
    .about-carousel-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .about-carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }
    .about-carousel-dot.active {
      background: var(--color-primary);
      transform: scale(1.3);
    }
    .about-img-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 18px 24px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .about-img-badge-num {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-accent);
    }
    .about-img-badge-txt {
      font-size: 0.8rem;
      color: var(--color-text-2);
    }

    .about-text h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--color-white);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 0.95rem;
      color: var(--color-text-2);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .about-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 24px;
      margin-bottom: 32px;
    }
    .about-checklist li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--color-text-2);
    }
    .about-checklist li svg {
      width: 18px;
      height: 18px;
      color: var(--color-whatsapp);
      flex-shrink: 0;
    }

    /* =========================================
       CTA FINAL
    ========================================= */
    #cta-final {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-final-box {
      background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-card-2) 100%);
      border: 1px solid var(--color-border-2);
      border-radius: var(--radius-xl);
      padding: 72px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-final-box::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%; transform: translateX(-50%);
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(30,110,255,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final-box h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--color-white);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .cta-final-box p {
      font-size: 1.05rem;
      color: var(--color-text-2);
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }

    .cta-final-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* =========================================
       FOOTER
    ========================================= */
    footer {
      background: var(--color-bg-card);
      border-top: 1px solid var(--color-border);
      padding: 60px 0 30px;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--color-text);
    }
    .footer-logo img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }
    .footer-tagline {
      font-size: 0.875rem;
      color: var(--color-text-3);
      line-height: 1.6;
      max-width: 280px;
    }

    @keyframes social-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    .footer-social {
      display: flex;
      gap: 16px;
      margin-top: 8px;
    }
    .footer-social a {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, filter 0.25s;
      border: 1px solid transparent;
      position: relative;
    }
    .footer-social a::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 16px;
      opacity: 0;
      transition: opacity 0.25s;
      z-index: -1;
    }
    .footer-social a:hover {
      transform: translateY(-5px) scale(1.1);
      animation: none;
    }
    .footer-social a svg { width: 26px; height: 26px; }

    /* Instagram */
    .social-instagram {
      background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      box-shadow: 0 4px 15px rgba(220,39,67,0.3);
    }
    .social-instagram svg { color: #fff; }
    .social-instagram::after { background: linear-gradient(135deg, #f09433, #bc1888); }
    .social-instagram:hover {
      box-shadow: 0 10px 30px rgba(220,39,67,0.6);
      filter: brightness(1.1);
    }

    /* TikTok */
    .social-tiktok {
      background: linear-gradient(135deg, #010101 0%, #1a1a2e 100%);
      border-color: rgba(105,201,255,0.3) !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(105,201,255,0.2);
    }
    .social-tiktok svg { color: #fff; }
    .social-tiktok:hover {
      box-shadow: 0 10px 30px rgba(105,201,255,0.35);
      border-color: rgba(105,201,255,0.7) !important;
      filter: brightness(1.4);
    }

    /* Facebook */
    .social-facebook {
      background: #1877f2;
      box-shadow: 0 4px 15px rgba(24,119,242,0.3);
    }
    .social-facebook svg { color: #fff; }
    .social-facebook::after { background: #1877f2; }
    .social-facebook:hover {
      box-shadow: 0 10px 30px rgba(24,119,242,0.6);
      filter: brightness(1.15);
    }

    .social-youtube {
      background: #ff0000;
      box-shadow: 0 4px 15px rgba(255,0,0,0.3);
    }
    .social-youtube svg { color: #fff; }
    .social-youtube::after { background: #ff0000; }
    .social-youtube:hover {
      box-shadow: 0 10px 30px rgba(255,0,0,0.6);
      filter: brightness(1.15);
    }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--color-text-3);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 18px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .footer-col ul li a {
      font-size: 0.875rem;
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--color-text); }

    .footer-bottom {
      border-top: 1px solid var(--color-border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--color-text-3);
    }
    .footer-copy a { color: var(--color-text-2); }

    /* =========================================
       FLOATING WHATSAPP
    ========================================= */
    .fab-whatsapp {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 998;
      width: 60px;
      height: 60px;
      background: var(--color-whatsapp);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 28px rgba(37,211,102,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .fab-whatsapp:hover {
      transform: scale(1.08) translateY(-2px);
      box-shadow: 0 10px 36px rgba(37,211,102,0.55);
    }
    .fab-whatsapp svg { width: 30px; height: 30px; color: #fff; }

    .fab-tooltip {
      position: absolute;
      right: 72px;
      bottom: 50%;
      transform: translateY(50%);
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      color: var(--color-text);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 7px 13px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .fab-whatsapp:hover .fab-tooltip { opacity: 1; }

    /* =========================================
       ANIMATE ON SCROLL
    ========================================= */
    .aos {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .aos.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .aos-delay-1 { transition-delay: 0.1s; }
    .aos-delay-2 { transition-delay: 0.2s; }
    .aos-delay-3 { transition-delay: 0.3s; }
    .aos-delay-4 { transition-delay: 0.4s; }
    .aos-delay-5 { transition-delay: 0.5s; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1024px) {
      .diff-layout { grid-template-columns: 1fr; }
      .diff-aside { display: none; }
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
      .about-layout { gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-img-col { display: none; }
      .hero-img-mobile {
        display: flex;
        justify-content: center;
        margin: 24px 0 18px;
      }
      .hero-img-mobile .hero-img-square {
        max-width: 280px;
      }
      .hero-img-square { max-width: 280px; }

      .services-grid { grid-template-columns: 1fr; }
      .videos-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .steps-grid::before { display: none; }
      .diff-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .testimonial-video-card { width: min(160px, 44vw); }
      .about-layout { grid-template-columns: 1fr; }
      .about-img-badge { right: 12px; bottom: 12px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .cta-final-box { padding: 48px 24px; }
      .hero-stats { gap: 24px; }
    }

    @media (max-width: 480px) {
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; justify-content: center; }
      .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
      .cta-final-btns { flex-direction: column; align-items: center; }
      .cta-final-btns .btn { width: 100%; max-width: 320px; }
    }