/*
Theme Name: PROEMI Builder
Theme URI:
Author: proemistudio.com
Description: O PROEMI Builder foi projetado para entregar mais performance e seguranca em projetos desenvolvidos com WordPress. O Pb e um tema exclusivo da PROEMI studio, desenvolvido para uso exclusivamente interno.
Version: 1.0.0
Text Domain: proemi-builder
*/

/* Fonte DM Sans hospedada localmente (assets/fonts/) — sem depender do Google.
   font-display: swap = texto aparece na hora, troca pela fonte ao carregar. */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    :root { --red: #FE0000; --dark: #00071B; --light: #F7F9FF; --cream: #F3F1ED; --blue-grey: #A2AFD0; --px: clamp(16px, 5vw, 80px); }
    .back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 15.2px; font-weight: 500; text-decoration: none; letter-spacing: .08px; transition: opacity .2s; }
    .back-link:hover { opacity: .75; }
    .btn-red-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: var(--red); border-radius: 999px; box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 8px 28px -10px rgba(254,0,0,.35); color: var(--cream); font-size: 15.2px; font-weight: 500; letter-spacing: .08px; text-decoration: none; transition: opacity .2s; }
    .btn-red-pill:hover { opacity: .88; }

/* ─── BASE ──────────────────────────────────────────────────────────── */
    body {
      background: #00071B;
      color: #F7F9FF;
      overflow-x: hidden;
    }

    /* ─── CUSTOM PROPERTIES ───────────────────────────────────────────── */
    :root {
      --hero-red:    #F30505;
      --white:       #F7F9FF;
      --card-bg:     rgba(255,255,255,0.04);
      --card-border: rgba(247,249,255,0.08);
      --px: 20px;
    }
    @media (min-width: 768px)  { :root { --px: 40px; } }
    @media (min-width: 1280px) { :root { --px: 60px; } }
    @media (min-width: 1440px) { :root { --px: 80px; } }
    @media (min-width: 1920px) { :root { --px: 192px; } }

    /* ─── CONTAINER ───────────────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1920px;
      margin: 0 auto;
      padding-left: var(--px);
      padding-right: var(--px);
    }

    /* ─── SHARED COMPONENTS ───────────────────────────────────────────── */
    .section-label {
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .label-dot {
      width: 6px; height: 6px;
      background: var(--red);
      box-shadow: 0 0 12px var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .label-dot--dark { box-shadow: none; }
    .section-label span:last-child {
      font-size: 12px;
      font-weight: 500;
      color: var(--blue-grey);
      text-transform: uppercase;
      letter-spacing: 2.16px;
      line-height: 1.55;
    }
    .section-label--dark span:last-child { color: #00071B; }

    .text-red   { color: var(--red); }
    .text-dark  { color: #00071B; }
    .mob-br     { display: none; }
    @media (max-width: 767px) { .mob-br { display: inline; } }

    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: var(--red);
      color: var(--white);
      border-radius: 999px;
      font-size: 15.2px;
      font-weight: 500;
      line-height: 1.55;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 8px 28px -10px rgba(254,0,0,0.35);
      transition: opacity .2s, transform .2s, box-shadow .2s;
    }
    .btn-red:hover {
      opacity: .92;
      transform: translateY(-3px);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 14px 32px -8px rgba(254,0,0,0.45);
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: var(--dark);
      color: var(--white);
      border-radius: 999px;
      font-size: 15.2px;
      font-weight: 500;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 8px 28px -10px rgba(254,0,0,0.35);
      transition: opacity .2s, transform .2s, box-shadow .2s;
    }
    .btn-dark:hover {
      opacity: .92;
      transform: translateY(-3px);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 14px 32px -8px rgba(254,0,0,0.45);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background: transparent;
      color: var(--white);
      border-radius: 999px;
      font-size: 15.2px;
      font-weight: 500;
      box-shadow: 0 0 0 1px rgba(247,249,255,0.18) inset;
      transition: opacity .2s, transform .2s, box-shadow .2s;
    }
    .btn-ghost:hover {
      opacity: .92;
      transform: translateY(-3px);
      box-shadow: 0 0 0 1px rgba(247,249,255,0.35) inset, 0 10px 24px -8px rgba(0,0,0,0.3);
    }

    /* ─── NAVIGATION ──────────────────────────────────────────────────── */
    .nav-wrapper {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px var(--px);
      transition: padding .35s ease;
    }
    .nav-wrapper.scrolled {
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px 15px 35px;
      background: rgba(0, 7, 27, 0.65);
      border-radius: 100px;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      max-width: calc(1920px - 2 * var(--px));
      margin: 0 auto;
      transition: padding .35s ease, margin .35s ease;
    }
    .nav-wrapper.scrolled .nav {
      padding: 7px 10px 7px 20px;
      margin: 0 30px;
    }
    .nav-logo img {
      height: 20px;
      width: auto;
      transition: height .35s ease;
    }
    .nav-wrapper.scrolled .nav-logo img {
      height: 14px;
    }
    .nav-links {
      display: none;
    }
    .nav-links a {
      font-size: 14.7px;
      color: var(--cream);
      padding: 10px;
      white-space: nowrap;
      position: relative;
      transition: color .3s, opacity .3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 10px; right: 10px;
      bottom: 4px;
      height: 1px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .nav-links a:hover { opacity: .85; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-actions {
      display: none;
      align-items: center;
      gap: 39px;
    }
    .nav-status {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--cream);
      font-size: 14.7px;
      white-space: nowrap;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
      70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
      100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
    }
    .status-dot {
      width: 7px; height: 7px;
      background: #22C55E;
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2s ease-out infinite;
    }
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 1px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .nav-actions { display: flex; }
      .hamburger   { display: none; }
      .nav-logo img { height: 20px; }
    }

    /* ─── MOBILE MENU ────────────────────────────────────────────────── */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: #00071B;
      z-index: 101;
      display: flex;
      flex-direction: column;
      padding: 0 0 40px;
      gap: 28px;
      transform: translateY(-100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateY(0); }

    .mob-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 40px;
    }
    .mob-top .mob-logo img { height: 20px; width: auto; display: block; }
    .mob-body { padding: 0 40px; }

    .mob-close {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 4px;
      background: none;
      border: none;
      cursor: pointer;
      width: 25px;
    }
    .mob-close span {
      display: block;
      width: 25px;
      height: 2px;
      background: #F7F9FF;
      border-radius: 1px;
    }
    .mob-close span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .mob-close span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

    .mob-body {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .mob-links {
      display: flex;
      flex-direction: column;
    }
    .mob-links a {
      color: #F7F9FF;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.3;
      padding: 13px 0;
      text-decoration: none;
      display: block;
    }
    .mob-links a:hover { opacity: .75; }

    .mob-divider {
      height: 1px;
      background: #A2AFD0;
      opacity: .5;
      margin-top: 8px;
    }
    .mob-contact {
      color: #F3F1ED;
      font-size: 18px;
      font-weight: 500;
      line-height: 35px;
      margin-top: 10px;
    }

    /* ─── HERO SECTION ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      padding: 14px 14px 0px;
    }
    .hero-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: var(--hero-red);
      min-height: 400px;
    }
    /* Hero image visible on mobile (full card bg) */
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      pointer-events: none;
    }
    .hero-image {
      position: absolute;
      top: 14px; right: 0; bottom: 0; left: 40%;
      z-index: 1;
      border-radius: 0 20px 20px 0;
      overflow: hidden;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom right;
    }
    .hero-image::after { display: none; }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-body {
      position: relative;
      z-index: 2;
      padding: 80px 24px 40px;
      display: flex;
      flex-direction: column;
      gap: 50px;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 9px;
      animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) both;
      animation-delay: .1s;
      will-change: opacity, transform;
    }
    .hero-headline {
      animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) both;
      animation-delay: .28s;
      will-change: opacity, transform;
    }
    .hero-btns {
      animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) both;
      animation-delay: .44s;
      will-change: opacity, transform;
    }
    .hero-stats {
      animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) both;
      animation-delay: .58s;
      will-change: opacity, transform;
    }
    .hero-badge .badge-dot {
      width: 6px; height: 6px;
      background: var(--cream);
      box-shadow: 0 0 12px var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero-badge span:last-child {
      color: var(--cream);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2.16px;
    }
    .hero-headline {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .hero-headline h1 {
      font-size: 36px;
      font-weight: 400;
      line-height: 1.15;
      color: var(--cream);
    }
    .hero-headline h1 em   { font-style: italic; font-weight: 400; }
    .hero-headline h1 strong { font-weight: 500; font-style: normal; }
    .hero-desc {
      color: var(--cream);
      opacity: .85;
      font-size: 16px;
      line-height: 26px;
      max-width: 540px;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }
    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 24px 24px;
      position: relative;
      z-index: 2;
    }
    .hero-stats span {
      color: var(--cream);
      opacity: .5;
      font-size: 13px;
      line-height: 2;
    }
    /* Lead notification cards (hidden on mobile) */
    .hero-leads {
      display: none;
    }
    /* Stats bar below hero on desktop */
    .hero-stats-bar {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 20px;
    }

    @media (min-width: 768px) {
      .hero-card {
        border-radius: 24px;
        min-height: 500px;
      }
      .hero-headline h1 { font-size: 44px; }
    }

    @media (min-width: 1280px) {
      .hero {
        padding-top: 14px;
        padding-bottom: 60px;
      }
      .hero-card {
        border-radius: 30px;
        min-height: 680px;
        background: var(--hero-red);
      }
      /* Image on right half only */
      .hero-image {
        position: absolute;
        left: 25%;
        top: 14px; right: 0; bottom: 60px;
        border-radius: 0 30px 30px 0;
        overflow: hidden;
      }
      .hero-image::after {
        background:
          linear-gradient(270deg, rgba(243,5,5,0) 60%, rgba(243,5,5,1) 100%),
          linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.15) 100%);
      }
      .hero-body {
        padding: 140px 60px 60px 40px;
        max-width: 60%;
        gap: 40px;
      }
      .hero-headline h1 { font-size: 54px; line-height: 1.13; }
      .hero-btns-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      /* Lead notification cards */
      .hero-leads {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
        position: absolute;
        right: 20px;
        bottom: 80px;
        z-index: 20;
        pointer-events: none;
        padding: 20px 0;
        min-width: 240px;
      }
      .lead-card {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        background: rgba(240, 243, 248, 0.92);
        border-radius: 10px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        white-space: nowrap;
        box-shadow: 0 4px 16px rgba(0,0,0,0.18);
        margin-bottom: 7px;
        opacity: 0;
        transform: translateY(22px);
        transition: opacity .5s ease, transform .5s cubic-bezier(0.22,1,0.36,1);
      }
      .lead-card.lc-in  { opacity: 1; transform: translateY(0); }
      .lead-card.lc-out { opacity: 0; transform: translateY(0); transition: opacity .4s ease; }
      .lead-card-left {
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .lead-icon {
        width: 28px; height: 28px;
        background: var(--red);
        border-radius: 6px;
        flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
      }
      .lead-icon svg { width: 14px; height: 14px; }
      .lead-card-text { display: flex; flex-direction: column; }
      .lead-card span { color: #1a1a2e; font-size: 10.5px; font-weight: 600; line-height: 1.3; }
      .lead-card time { color: #6b7280; font-size: 9px; font-weight: 400; }
      .hero-stats {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        flex-direction: row;
        justify-content: space-between;
        padding: 36px 60px;
        gap: 0;
        z-index: 10;
      }
    }

    @media (min-width: 1440px) {
      .hero-card { min-height: 783px; }
      .hero-body { padding: 184px 80px 80px 60px; }
      .hero-headline h1 { font-size: 60px; line-height: 68px; }
      .hero-leads { right: 120px; bottom: 120px; }
    }

    @media (min-width: 1920px) {
      .hero-image { left: 37%; }
      .hero-body { max-width: 55%; padding-left: 332px; }
      .hero-leads { right: 250px; bottom: 150px; }
    }

    /* ─── PLATFORMS ──────────────────────────────────────────────────── */
    .platforms {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 56px;
    }
    .platforms p {
      text-align: center;
      color: var(--blue-grey);
      font-size: 18px;
      line-height: 1.55;
    }
    .platforms-logos {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .logos-track { display: contents; }
    .logo-dupe { display: none; }
    .platforms-logos img {
      height: 36px;
      width: auto;
      opacity: .65;
      transition: opacity .2s, transform .2s;
    }
    .platforms-logos img:hover { opacity: 1; transform: translateY(-3px); }

    @media (max-width: 767px) {
      .platforms-logos {
        overflow: hidden;
        width: 100%;
        display: block;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
      }
      .logos-track {
        display: flex;
        align-items: center;
        gap: 48px;
        width: max-content;
        animation: logos-scroll 14s linear infinite;
      }
      .logo-dupe { display: block; }
      .platforms-logos img { height: 25px; width: auto; }
      @keyframes logos-scroll {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
      }
    }

    @media (min-width: 768px) {
      .platforms-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 60px;
      }
    }
    @media (min-width: 1280px) {
      .platforms { padding: 80px var(--px); }
      .platforms-logos {
        flex-wrap: nowrap;
        gap: 86px;
      }
      .platforms-logos img { height: auto; max-height: 40px; }
    }

    /* ─── SOLUÇÕES ───────────────────────────────────────────────────── */
    .solucoes {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .sol-header {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 680px;
    }
    .sol-header h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
    }
    .sol-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-radius: 0;
    }
    .sol-card {
      position: relative;
      padding: 33px 29px 29px;
      border-radius: 22px;
      border: 1px solid rgba(247,249,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      min-height: 220px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform .25s, box-shadow .25s;
    }
    .sol-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px -8px rgba(0,0,0,0.35);
    }
    .sol-num {
      color: var(--red);
      font-size: 12.5px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2.25px;
      margin-bottom: 24px;
    }
    .sol-title {
      color: var(--white);
      font-size: 24px;
      font-weight: 500;
      line-height: 1.55;
      margin-bottom: 16px;
    }
    .sol-desc {
      color: var(--blue-grey);
      font-size: 15.4px;
      line-height: 1.55;
      flex: 1;
    }
    .sol-icon {
      position: absolute;
      top: 29px;
      right: 29px;
      width: 28px; height: 28px;
      opacity: .9;
    }
    .sol-icon svg, .sol-icon img { width: 100%; height: 100%; }

    .sol-cta {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .sol-cta .btn-red { max-width: 300px; justify-content: center; }
    .sol-cta p {
      color: var(--blue-grey);
      font-size: 18px;
      line-height: 28px;
      max-width: 780px;
    }

    @media (min-width: 768px) {
      .sol-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
    }
    @media (min-width: 1280px) {
      .solucoes { padding: 80px var(--px); gap: 63px; }
      .sol-header h2 { font-size: 50px; line-height: 58px; }
      .sol-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
      }
      .sol-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      .sol-cta p { margin: 0; }
    }

    /* ─── ATUAÇÃO ────────────────────────────────────────────────────── */
    .atuacao {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .atu-header {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 600px;
    }
    .atu-header h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
    }
    .atu-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .atu-card {
      padding: 30px;
      border-radius: 22px;
      border: 1px solid rgba(247,249,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
      min-height: 205px;
      transition: transform .25s, box-shadow .25s;
    }
    .atu-card:not(.atu-card--cta):hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px -8px rgba(0,0,0,0.35);
    }
    .atu-icon-wrap {
      padding: 13px;
      background: rgba(254,0,0,0.12);
      border-radius: 12px;
      width: fit-content;
    }
    .atu-icon-wrap svg, .atu-icon-wrap img { width: 22px; height: 22px; }
    .atu-card span {
      color: var(--white);
      font-size: 22px;
      font-weight: 500;
      line-height: 1.36;
    }
    .atu-card--cta {
      border-radius: 22px;
      border: 1px solid rgba(67,79,116,0.63);
      background: #F7F9FF;
      align-items: center;
      text-align: center;
      gap: 22px;
    }
    .atu-card--cta p {
      color: #050B1F;
      font-size: 18px;
      font-weight: 500;
      line-height: 26px;
    }

    @media (min-width: 768px) {
      .atu-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1280px) {
      .atuacao { padding: 80px var(--px); gap: 63px; }
      .atu-header h2 { font-size: 50px; line-height: 58px; }
      .atu-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ─── MARQUEE ────────────────────────────────────────────────────── */
    .marquee-wrapper {
      border-top: 1px solid rgba(247,249,255,0.06);
      border-bottom: 1px solid rgba(247,249,255,0.06);
      background: rgba(247,249,255,0.02);
      padding: 13px 0;
      overflow: hidden;
      margin-bottom: 100px;
    }
    .marquee-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      font-size: 22.4px;
      font-weight: 500;
      line-height: 34.72px;
      padding: 0 10px;
      white-space: nowrap;
      color: var(--white);
    }
    .marquee-item--italic {
      font-style: italic;
      font-weight: 400;
      color: var(--blue-grey);
    }
    .marquee-dot {
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
      margin: 0 6px;
    }

    /* ─── DEPOIMENTOS ────────────────────────────────────────────────── */
    .depoimentos {
      padding: 40px var(--px);
    }
    .dep-card {
      background: var(--white);
      border-radius: 20px;
      padding: 48px 24px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .dep-top {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .dep-top h2 {
      color: #00071B;
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
    }
    .dep-navbtns {
      display: flex;
      gap: 8px;
    }
    .dep-btn {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 2px rgba(0,7,27,0.2);
      background: transparent;
      color: #00071B;
      font-size: 18px;
      transition: background .2s;
    }
    .dep-btn:hover { background: rgba(0,7,27,0.06); }
    blockquote {
      color: #00071B;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.55;
    }
    .dep-client-row {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .dep-client {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .dep-client img {
      width: 56px; height: 56px;
      border-radius: 50%;
      object-fit: cover;
    }
    .dep-client strong {
      display: block;
      color: #00071B;
      font-size: 16.8px;
      font-weight: 500;
    }
    .dep-client span {
      color: #00071B;
      opacity: .5;
      font-size: 14.4px;
    }
    .dep-count {
      color: #00071B;
      opacity: .2;
      font-size: 16.8px;
    }

    @media (min-width: 768px) {
      .dep-card { padding: 60px 48px; position: relative; }
      blockquote { font-size: 26px; }
      .dep-top h2 { font-size: 40px; max-width: 560px; }
      .dep-navbtns { position: absolute; top: 60px; right: 48px; flex-shrink: 0; }
      .dep-client-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
    @media (min-width: 1280px) {
      .depoimentos { padding: 0 var(--px) 60px; }
      .dep-card {
        padding: 100px 160px;
        border-radius: 40px;
        gap: 59px;
      }
      .dep-navbtns { top: 100px; right: 160px; }
      .dep-top h2 { font-size: 50px; line-height: 58px; }
      blockquote { font-size: 35px; line-height: 50px; padding-right: 150px; }
    }

    /* ─── IDEAL PARA ─────────────────────────────────────────────────── */
    .ideal {
      padding: 80px var(--px) 60px;
      display: flex;
      flex-direction: column;
      gap: 96px;
    }
    .ideal-cols {
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
    .ideal-head {
      display: flex;
      flex-direction: column;
      gap: 31px;
    }
    .ideal-head h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
    }
    .ideal-list {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .ideal-list li {
      display: flex;
      align-items: flex-start;
      gap: 19px;
    }
    .ideal-bullet {
      width: 24px; height: 24px;
      flex-shrink: 0;
    }
    .ideal-list li span {
      color: var(--white);
      font-size: 16.3px;
      line-height: 25.3px;
      padding-top: 2px;
    }
    .ideal-divider {
      border: none;
      border-top: 1px solid rgba(162,175,208,0.4);
    }

    @media (min-width: 1280px) {
      .ideal { padding: 80px var(--px); }
      .ideal-cols {
        flex-direction: row;
        gap: 133px;
        align-items: flex-start;
      }
      .ideal-head { max-width: 400px; }
      .ideal-head h2 { font-size: 50px; line-height: 58px; }
      .ideal-list { gap: 57px; }
      .ideal-list li { align-items: center; }
    }

    /* ─── MÉTODO ─────────────────────────────────────────────────────── */
    .metodo {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .met-header {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 820px;
    }
    .met-header h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
    }
    .met-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .met-card {
      padding: 50px;
      border-radius: 22px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .met-card--trad {
      background: #F7F9FF;
    }
    .met-card--fire {
      background: rgba(162,175,208,0.10);
    }
    .met-pill {
      display: inline-flex;
      padding: 8px 17px;
      background: rgba(5,11,31,0.08);
      border-radius: 999px;
      color: #050B1F;
      font-size: 12.8px;
      font-weight: 600;
      letter-spacing: 0.13px;
      width: fit-content;
    }
    .met-pill--fire {
      background: rgb(255 255 255 / 93%);
      color: #000000;
      /* box-shadow: 0 0 0 1px rgba(254, 0, 0, 0.3) inset; */
    }
    .met-list {
      display: flex;
      flex-direction: column;
      gap: 19px;
    }
    .met-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 16px;
      line-height: 24px;
    }
    .met-card--trad .met-list li { color: #050B1F; }
    .met-card--fire .met-list li { color: var(--white); }
    .met-bullet-icon {
      width: 20px; height: 20px;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .met-cta {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .met-cta .btn-red { max-width: 300px; justify-content: center; }
    .met-cta p {
      color: var(--blue-grey);
      font-size: 18px;
      line-height: 28px;
    }
    @media (max-width: 1279px) {
      .met-cta { align-items: center; text-align: center; }
      .met-cta p { width: 100%; }
    }

    @media (min-width: 768px) {
      .met-cards { flex-direction: row; }
      .met-card { flex: 1; }
    }
    @media (min-width: 1280px) {
      .metodo { padding: 80px var(--px); gap: 49px; }
      .met-header h2 { font-size: 50px; line-height: 58px; }
      .met-list li { padding: 10px 80px 0px 0px; }
      .met-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
    }

    /* ─── SOBRE NÓS ──────────────────────────────────────────────────── */
    .sobre {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .sobre-content {
      display: flex;
      flex-direction: column;
      gap: 52px;
      max-width: 560px;
    }
    .sobre-texts {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }
    .sobre-texts-head {
      display: flex;
      flex-direction: column;
      gap: 34px;
    }
    .sobre-texts-head h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
    }
    .sobre-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 500px;
    }
    .sobre-body p {
      color: var(--blue-grey);
      font-size: 16px;
      line-height: 26px;
    }
    .sobre-body strong { color: #F4F6F9; font-weight: 700; }

    /* Phone mockup */
    .phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }
    .phone-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(254,0,0,0.35) 0%, rgba(254,0,0,0) 55%);
      filter: blur(30px);
      pointer-events: none;
    }
    .phone-frame {
      position: relative;
      width: 260px;
      height: 460px;
      background: #050A1C;
      border-radius: 22px;
      box-shadow: 0 0 0 0.78px rgba(247,249,255,0.08) inset, 0 24px 63px -16px rgba(0,0,0,0.7);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .phone-stories { position: absolute; inset: 0; }
    .phone-story {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      opacity: 0;
      transition: opacity .25s;
      pointer-events: none;
    }
    .phone-story.active { opacity: 1; }
    .phone-story--img { object-fit: cover; }
    .phone-story--vid { object-fit: contain; background: #000; }
    .phone-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,10,28,0.65) 0%, rgba(5,10,28,0) 18%, rgba(5,10,28,0) 78%, rgba(5,10,28,0.55) 100%);
      pointer-events: none;
    }
    .phone-bar-fill { height: 100%; width: 0%; background: var(--white); border-radius: 1px; }
    .phone-sound-btn {
      background: rgba(0,0,0,0.35);
      border: none;
      border-radius: 50%;
      width: 28px; height: 28px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      z-index: 5;
    }
    .phone-tap {
      position: absolute; top: 0; bottom: 0; width: 50%; z-index: 4; cursor: pointer;
    }
    .phone-tap--prev { left: 0; }
    .phone-tap--next { right: 0; }
    .phone-ui {
      position: relative;
      z-index: 5;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .phone-bars {
      display: flex;
      gap: 3px;
    }
    .phone-bar {
      flex: 1;
      height: 2px;
      background: rgba(247,249,255,0.25);
      border-radius: 1px;
      overflow: hidden;
    }
    .phone-bar-fill { height: 100%; width: 0%; background: var(--white); border-radius: 1px; }
    .phone-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .phone-user {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .phone-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(162,175,208,0.6);
      object-fit: cover;
    }
    .phone-user-info { display: flex; flex-direction: column; }
    .phone-username {
      color: var(--white);
      font-size: 10px;
      font-weight: 500;
      line-height: 1.2;
    }
    .phone-time {
      color: rgba(247,249,255,0.65);
      font-size: 8px;
      line-height: 1.2;
    }
    .phone-close-btn {
      width: 22px; height: 22px;
      background: rgba(5,10,28,0.55);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(3px);
      color: var(--white);
      font-size: 12px;
    }

    @media (min-width: 1280px) {
      .sobre {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 80px var(--px);
      }
      .sobre-content { flex: 1; order: 2; }
      .sobre-texts-head h2 { font-size: 50px; line-height: 58px; }
      .phone-wrap {
        flex: 0 1 800px;
        min-height: 640px;
        order: 1;
      }
      .phone-frame {
        width: 360px;
        height: 640px;
      }
    }

    /* ─── STATS ──────────────────────────────────────────────────────── */
    .stats {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .stat-item {
      padding: 40px 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .stat-num {
      font-size: 72px;
      line-height: 72px;
      color: var(--white);
    }
    .stat-num .thin  { font-weight: 300; }
    .stat-num .heavy { font-weight: 300; }
    .stat-num .reg   { font-weight: 400; }
    .stat-item p {
      color: var(--blue-grey);
      font-size: 16px;
      line-height: 24px;
    }
    .stat-divider {
      width: 100%;
      height: 1px;
      background: rgba(162,175,208,0.4);
    }

    @media (min-width: 1280px) {
      .stats {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 89px;
        padding: 80px var(--px);
      }
      .stat-item { padding: 0; }
      .stat-divider {
        width: 1px;
        height: 93px;
        align-self: center;
        flex-shrink: 0;
      }
    }

    /* ─── VALORES ────────────────────────────────────────────────────── */
    .valores {
      padding: 40px var(--px) 80px;
      display: flex;
      flex-direction: column;
      gap: 35px;
    }
    .valores h2 {
      color: var(--white);
      font-size: 28px;
      font-weight: 500;
      line-height: 1.55;
    }
    .val-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .val-card {
      padding: 23px;
      background: rgba(247,249,255,0.03);
      border-radius: 16px;
      outline: 1px solid rgba(247,249,255,0.07);
      outline-offset: -1px;
      display: flex;
      flex-direction: column;
      gap: 17px;
      transition: transform .25s, box-shadow .25s;
    }
    .val-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px -8px rgba(0,0,0,0.35);
    }
    .val-icon {
      width: 28px; height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .val-icon svg, .val-icon img { width: 100%; height: 100%; }
    .val-card h3 {
      color: var(--white);
      font-size: 16.8px;
      font-weight: 500;
      line-height: 26px;
    }
    .val-card p {
      color: var(--blue-grey);
      font-size: 14.1px;
      line-height: 21px;
    }

    @media (min-width: 768px) {
      .val-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1280px) {
      .valores { padding: 60px var(--px) 80px; }
      .val-grid { grid-template-columns: repeat(5, 1fr); }
    }

    /* ─── FAQ ────────────────────────────────────────────────────────── */
    .faq {
      padding: 40px var(--px) 80px;
    }
    .faq-card {
      background: var(--white);
      border-radius: 30px;
      padding: 48px 24px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .faq-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }
    .faq-top h2 {
      color: #00071B;
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
    }
    details.faq-item {
      border-top: 1px solid rgba(0,0,0,0.12);
    }
    details.faq-item:last-of-type {
      border-bottom: 1px solid rgba(0,0,0,0.12);
    }
    details.faq-item summary {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 28px 0;
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    .faq-num {
      color: #00071B;
      opacity: .4;
      font-size: 15.2px;
      line-height: 21.3px;
      letter-spacing: 0.6px;
      min-width: 28px;
      flex-shrink: 0;
    }
    .faq-q {
      flex: 1;
      color: #00071B;
      font-size: 16px;
      font-weight: 400;
      line-height: 26px;
    }
    .faq-toggle {
      width: 36px; height: 36px;
      background: rgba(247,249,255,0.06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s;
    }
    .faq-toggle-icon {
      position: relative;
      width: 12px; height: 12px;
    }
    .faq-toggle-icon::before,
    .faq-toggle-icon::after {
      content: '';
      position: absolute;
      background: #00071B;
      border-radius: 1px;
      transition: transform .2s, opacity .2s;
    }
    .faq-toggle-icon::before {
      width: 12px; height: 1.5px;
      top: 50%; left: 0;
      transform: translateY(-50%);
    }
    .faq-toggle-icon::after {
      width: 1.5px; height: 12px;
      top: 0; left: 50%;
      transform: translateX(-50%);
    }
    details[open] .faq-toggle { background: var(--white); }
    details[open] .faq-toggle-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
    .faq-answer {
      padding: 0 44px 24px;
      color: #00071B;
      opacity: .7;
      font-size: 15px;
      line-height: 24px;
    }
    .faq-contact-strip {
      padding: 28px 26px;
      background: var(--cream);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-contact-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .faq-contact-left img {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid rgba(162,175,208,0.6);
    }
    .faq-contact-left span {
      color: #00071B;
      font-size: 15.2px;
      font-weight: 500;
    }
    .faq-contact-right {
      color: #00071B;
      font-size: 15.2px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .faq-contact-right a {
      color: var(--red);
      text-decoration: underline;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .faq-card { padding: 60px 48px; }
      .faq-top h2 { font-size: 45px; }
      .faq-contact-strip {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      .faq-contact-right { flex-direction: row; gap: 8px; align-items: center; }
      .faq-q { font-size: 18.4px; }
    }
    @media (min-width: 1280px) {
      .faq { padding: 60px var(--px) 80px; }
      .faq-card {
        padding: 99px 177px;
        border-radius: 40px;
      }
      .faq-top h2 { font-size: 50px; line-height: 58px; }
    }

    /* ─── CONTATO ────────────────────────────────────────────────────── */
    .contato {
      padding: 80px var(--px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
    }
    .contato-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      text-align: center;
    }
    .contato-header h2 {
      font-size: 35px;
      font-weight: 400;
      line-height: 1.29;
      color: var(--white);
      max-width: 860px;
    }
    .contato-cols {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      max-width: 1060px;
    }
    .contato-img-card {
      position: relative;
      background: var(--hero-red);
      border-radius: 10px;
      overflow: hidden;
      min-height: 300px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .contato-img-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .contato-img-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    }
    .contato-img-text {
      position: relative;
      z-index: 2;
    }
    .contato-img-text p {
      color: var(--cream);
      font-size: 28px;
      font-weight: 400;
      line-height: 1.23;
    }
    .contato-img-text em  { font-style: italic; }
    .contato-img-text strong { font-weight: 500; color: var(--red); font-style: normal; }
    .contato-form-card {
      background: #fff;
      border-radius: 10px;
      padding: 35px 15px 20px;
    }
    .form-field {
      border-bottom: 1px solid #E5E5E5;
      padding: 0 0 0 20px;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 32px 0;
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #414141;
      outline: none;
      display: block;
    }
    .form-field select {
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
    }
    .form-field textarea {
      resize: none;
      padding: 22px 0;
    }
    .form-field--select { position: relative; }
    .form-field--select::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px; height: 16px;
      background: url('assets/images/select-icon.svg') center / contain no-repeat;
      pointer-events: none;
    }
    .form-submit {
      width: 100%;
      padding: 20px;
      background: var(--red);
      border-radius: 4px;
      color: var(--white);
      font-size: 18px;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      text-align: center;
      margin-top: 12px;
      transition: opacity .2s;
    }
    .form-submit:hover { opacity: .88; }

    @media (min-width: 768px) {
      .contato-img-card { min-height: 400px; }
    }
    @media (min-width: 1280px) {
      .contato { padding: 80px var(--px); }
      .contato-header h2 { font-size: 50px; line-height: 58px; }
      .contato-cols {
        flex-direction: row;
        align-items: stretch;
        max-width: 1060px;
      }
      .contato-img-card {
        flex: 0 0 404px;
        min-height: 810px;
      }
      .contato-img-text p { font-size: 34px; }
      .contato-form-card {
        flex: 1;
        padding: 35px 27px 20px;
      }
    }

    /* ─── FOOTER ─────────────────────────────────────────────────────── */
    .footer {
      padding: 40px var(--px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    .footer-logo img {
      height: 36px;
      width: auto;
    }
    .footer-info {
      color: var(--blue-grey);
      font-size: 14px;
      font-weight: 500;
      line-height: 20px;
      opacity: .6;
      text-align: center;
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .social-btn {
      width: 35px; height: 35px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      transition: opacity .2s;
    }
    .social-btn:hover { opacity: .8; }
    .social-btn img {
      width: 100%; height: 100%;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(5%) sepia(93%) saturate(1200%) hue-rotate(210deg) brightness(0.12);
    }

    .footer-sep { display: none; }
    .footer-mob-br { display: inline; }
    .footer-phone-br { display: inline; }

    @media (min-width: 1280px) {
      .footer {
        flex-direction: row;
        justify-content: center;
        gap: clamp(60px, 8vw, 172px);
        padding: 0 var(--px) 100px;
      }
      .footer-info { text-align: left; }
      .footer-sep { display: inline; }
      .footer-mob-br { display: none; }
      .footer-phone-br { display: none; }
    }

    /* ─── ABOVE 1920px ───────────────────────────────────────────────── */
    @media (min-width: 1920px) {
      html { background: #00071B; }
      main,
      .nav-wrapper, .hero, .platforms, .solucoes, .atuacao,
      .depoimentos, .ideal, .metodo, .sobre,
      .stats, .valores, .faq, .contato, .footer,
      .marquee-wrapper {
        max-width: 1920px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      .footer {
        justify-content: center;
        gap: 172px;
        padding-left: var(--px);
        padding-right: var(--px);
      }
    }

:root{--sbw:5px;--sbc:#FE0000}
    html,body{scrollbar-width:none;-ms-overflow-style:none}
    html::-webkit-scrollbar,body::-webkit-scrollbar{width:0;height:0}
    #sb{position:fixed;top:0;right:2px;width:var(--sbw);height:100vh;pointer-events:none;z-index:99999}
    #sb i{position:absolute;right:0;width:100%;border-radius:999px;background:var(--sbc);opacity:0;transition:opacity .35s ease}
    html.scrolling #sb i{opacity:1}
    @media (max-width:1024px){#sb{display:none}}

:root{--cs:12px;--ch:40px;--cc:100px;--cv:120px}
    html,body{cursor:none}
    a,button,[role=button],summary{cursor:none!important}
    input,textarea,[contenteditable=true]{cursor:text!important}
    html:not(.cursor-ready) body{cursor:auto}
    html:not(.cursor-ready) a,
    html:not(.cursor-ready) button,
    html:not(.cursor-ready) [role=button],
    html:not(.cursor-ready) summary{cursor:auto!important}
    #cl,#cc{display:none}
    html.cursor-ready #cl,
    html.cursor-ready #cc{display:block}
    #cl{
      position:fixed;inset:0;pointer-events:none;z-index:2147483646;
      backdrop-filter:grayscale(1);-webkit-backdrop-filter:grayscale(1);
      --x:-9999px;--y:-9999px;--r:6px;
      mask:radial-gradient(circle var(--r) at var(--x) var(--y),#000 99%,transparent);
      -webkit-mask:radial-gradient(circle var(--r) at var(--x) var(--y),#000 99%,transparent)
    }
    #cc{
      position:fixed;left:0;top:0;width:var(--cs);height:var(--cs);
      border-radius:50%;background:#fff;mix-blend-mode:difference;
      transform:translate(-50%,-50%);
      transition:width .12s ease,height .12s ease,opacity .15s ease,background .12s ease;
      pointer-events:none;z-index:2147483647;opacity:0
    }
    .c-link:not(.c-video):not(.c-card) #cc{width:var(--ch);height:var(--ch)}
    .c-video #cc{width:var(--cv);height:var(--cv);background:#fff;mix-blend-mode:normal;color:#000}
    .c-video #cc:after{content:"Start Here";position:absolute;inset:0;display:grid;place-items:center;font:600 12px/1 sans-serif;text-transform:uppercase;letter-spacing:.04em}
    .c-card:not(.c-video) #cc{width:var(--cc);height:var(--cc);background:#fff;mix-blend-mode:normal;color:#000}
    .c-card:not(.c-video) #cc:after{content:"Ver mais";position:absolute;inset:0;display:grid;place-items:center;font:600 12px/1 sans-serif;text-transform:uppercase;letter-spacing:.04em}
    @media(pointer:coarse),(hover:none){html,body{cursor:auto}#cl,#cc{display:none!important}}

    @media (max-width: 767px) {
      .nav-wrapper.scrolled { padding-top: 8px; padding-bottom: 20px; }
      .nav-wrapper.scrolled .nav { padding: 10px 20px; background: rgb(1 13 38 / 71%); margin: 0px 5px; }
      .nav-wrapper.scrolled .nav-logo img { height: 17px; }
      .nav-logo img { height: 16px; width: auto; transition: height .35s ease; }
      .btn-ghost { display: none; }
      .hero-badge { margin-top: 30px; }
      .hero-image { left: 22%; }
      .sol-header { gap: 25px; }
      .atu-header { gap: 25px; }
      .ideal-head { gap: 22px; }
      .met-header { gap: 25px; }
      .sobre-texts-head { gap: 24px; }
      .contato-header { gap: 25px; }
      .footer-info { line-height: 30px; }
      .footer-logo img { height: 25px; }
      .footer-socials { padding-bottom: 80px; }
    }

    @media (max-width: 400px) {
      .desk-br { display: none; }
      .platforms-logos img { height: 25px; }
      .sol-header h2, .met-header h2, .atu-header h2, .dep-top h2,
      .ideal-head h2, .sobre-texts-head h2, .faq-top h2, .contato-header h2,
      .valores h2 { font-size: 22px; }
      .hero-headline h1 { font-size: clamp(28px, 8vw, 36px); }
      .hero-body { padding: 85px 20px 109px; gap: 28px; }
      .stats { padding-top: 40px; }
      .hero-headline { gap: 16px; }
      .hero-desc { font-size: 14px; line-height: 22px; }
      .hero-stats { padding: 12px 20px; gap: 4px; }
      .hero-stats span { font-size: 12px; line-height: 1.7; }
      .sol-cta, .met-cta { align-items: center; text-align: center; }
      .met-cta p { padding: 0; }
      .sol-cta p { max-width: none; }
      .dep-count { display: none; }
      .phone-wrap { width: 100%; }
      .phone-frame { width: 100%; height: auto; aspect-ratio: 260/460; }
      .atu-card:not(.atu-card--cta) {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: unset;
        gap: 16px;
      }
    }

    @media (max-width: 390px) {
      .faq-contact-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .faq-contact-left {
        flex-direction: column;
        align-items: center;
      }
      .faq-contact-left span { font-size: 18px; }
      .faq-contact-right {
        align-items: center;
        font-size: 18px;
      }
      .faq-contact-right a { font-size: 20px; }
      .met-card {
        padding: 30px;
        border-radius: 22px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .met-cta p {
        color: var(--blue-grey);
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
        padding: 0;
      }
      .sol-cta p {
        color: var(--blue-grey);
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
      }
    }

#float-cta {
      position: fixed;
      bottom: 16px;
      right: 16px;
      z-index: 9999;
      width: calc(100vw - 32px);
      max-width: 360px;
      border-radius: 16px;
      background: #f7f9ff;
      box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 10px;
      gap: 12px;
      max-height: 77px;
      opacity: 0;
      transform: translateY(30px);
      pointer-events: none;
      transition: opacity .4s ease-out, transform .4s ease-out;
    }
    #float-cta.fc-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    #float-cta.fc-hide {
      opacity: 0;
      transform: translateY(30px);
      pointer-events: none;
      transition: opacity .3s ease-in, transform .3s ease-in;
    }
    #float-cta video {
      width: 57px;
      height: 57px;
      flex-shrink: 0;
      object-fit: cover;
      border-radius: 8px;
      display: block;
    }
    .fc-body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      flex: 1;
      min-width: 0;
    }
    .fc-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      color: #050B1F;
      text-align: left;
    }
    .fc-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      background: #FE0000;
      border-radius: 999px;
      box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 8px 28px -10px rgba(254,0,0,.35);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: .04px;
      color: #F7F9FF;
      white-space: nowrap;
    }
    .fc-btn { display: none; }
    @media (min-width: 1280px) {
      #float-cta {
        bottom: 24px;
        right: 24px;
        width: 268px;
        max-width: 268px;
        max-height: none;
        border-radius: 20px;
        flex-direction: column;
        padding: 14px 12px 12px;
        gap: 10px;
      }
      #float-cta video {
        width: 100%;
        height: 142px;
        border-radius: 12px;
      }
      .fc-body { align-items: center; gap: 9px; }
      .fc-text { font-size: 15px; line-height: 22px; text-align: center; }
      .fc-btn { display: inline-flex; padding: 6px 29px; font-size: 15.2px; line-height: 23.56px; letter-spacing: .08px; }
    }