/* ============================================================
       DESIGN TOKENS — RDX Control
       ============================================================ */
    :root {
      /* Paleta Principal */
      --rdx-red-500: #C0392B;
      --rdx-red-600: #A93226;
      --rdx-red-400: #E74C3C;
      --rdx-red-100: #2A1212;
      --rdx-navy-900: #0A0A0A;
      --rdx-navy-800: #111111;
      --rdx-navy-700: #1A1A1A;

      /* Neutros */
      --rdx-black: #080808;
      --rdx-gray-900: #1E1E1E;
      --rdx-gray-700: #CCCCCC;
      --rdx-gray-500: #999999;
      --rdx-gray-300: #3A3A3A;
      --rdx-gray-100: #222222;
      --rdx-gray-50:  #181818;
      --rdx-white: #F0F0F0;

      /* Semânticas */
      --rdx-success: #10B981;
      --rdx-warning: #F59E0B;
      --rdx-error: #DC2626;
      --rdx-info: #2563EB;

      /* Border radius */
      --radius-sm: 6px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-full: 9999px;

      /* Sombras */
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.4);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.6);
      --shadow-lg: 0 12px 24px rgba(0,0,0,0.7);
      --shadow-orange: 0 4px 16px rgba(192,57,43,0.35);

      /* Espaçamento (base 4px) */
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;
      --space-24: 6rem;
      --space-32: 8rem;

      /* Container */
      --container-max: 1200px;
      --container-pad: 16px;

      /* Tipografia */
      --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* ============================================================
       RESET / BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.65;
      color: #CCCCCC;
      background: var(--rdx-navy-900);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      -moz-osx-font-smoothing: grayscale;
    }
    img, svg { display: block; max-width: 100%; height: auto; }
    a { color: var(--rdx-red-500); text-decoration: none; transition: color 150ms ease-out; }
    a:hover { color: var(--rdx-red-600); }
    a:focus-visible {
      outline: 2px solid var(--rdx-red-400);
      outline-offset: 2px;
      border-radius: 2px;
    }
    ul { list-style: none; padding: 0; margin: 0; }
    button { font-family: inherit; cursor: pointer; }

    /* Skip link (acessibilidade) */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--rdx-navy-900);
      color: #fff;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      z-index: 1000;
      font-weight: 600;
    }
    .skip-link:focus { top: 16px; color: #fff; }

    /* ============================================================
       LAYOUT — CONTAINER
       ============================================================ */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-inline: auto;
      padding-inline: var(--container-pad);
    }
    @media (min-width: 768px) {
      :root { --container-pad: 24px; }
    }

    section { padding-block: 64px; }
    @media (min-width: 1024px) {
      section { padding-block: 96px; }
    }

    /* ============================================================
       TIPOGRAFIA
       ============================================================ */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      color: #F0F0F0;
      margin: 0 0 var(--space-4);
      letter-spacing: -0.01em;
    }
    .display {
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      line-height: 1.15;
    }
    h3 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.25;
      color: var(--rdx-gray-900);
    }
    h4 {
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0;
      color: var(--rdx-gray-900);
    }
    p { margin: 0 0 var(--space-4); }
    .body-lg { font-size: 1.125rem; line-height: 1.6; }
    .body-sm { font-size: 0.875rem; line-height: 1.5; }
    .overline {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rdx-red-500);
      margin-bottom: var(--space-3);
    }
    .text-highlight { color: var(--rdx-red-500); }

    /* Texto em fundo escuro */
    .on-dark { color: rgba(255, 255, 255, 0.85); }
    .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark .display { color: #fff; }

    /* ============================================================
       BOTÕES
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      min-height: 48px;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.01em;
      border: 2px solid transparent;
      transition: background 200ms ease-out, color 200ms ease-out,
                  transform 200ms ease-out, box-shadow 200ms ease-out,
                  border-color 200ms ease-out;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn:focus-visible {
      outline: 2px solid var(--rdx-red-400);
      outline-offset: 2px;
    }

    .btn-primary {
      background: var(--rdx-red-500);
      color: #fff;
      box-shadow: var(--shadow-orange);
    }
    .btn-primary:hover {
      background: var(--rdx-red-600);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(242, 107, 31, 0.32);
    }
    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(242, 107, 31, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--rdx-navy-900);
      border-color: var(--rdx-navy-900);
    }
    .btn-secondary:hover {
      background: var(--rdx-navy-900);
      color: #fff;
    }
    .on-dark .btn-secondary,
    .btn-secondary.on-dark {
      color: #fff;
      border-color: rgba(255,255,255,0.5);
    }
    .on-dark .btn-secondary:hover,
    .btn-secondary.on-dark:hover {
      background: #fff;
      color: var(--rdx-navy-900);
      border-color: #fff;
    }

    .btn-ghost {
      background: transparent;
      color: var(--rdx-red-500);
      padding: 0;
      min-height: auto;
      font-weight: 600;
      border: none;
    }
    .btn-ghost .arrow { transition: transform 150ms ease-out; }
    .btn-ghost:hover { color: var(--rdx-red-600); }
    .btn-ghost:hover .arrow { transform: translateX(4px); }

    /* Em mobile, CTAs primários full-width */
    @media (max-width: 639px) {
      .btn.btn-block-mobile { width: 100%; }
    }

    /* ============================================================
       HEADER / NAV
       ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(8,8,8,0.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--rdx-gray-100);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: var(--space-6);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.125rem;
      color: #F0F0F0;
      text-decoration: none;
      letter-spacing: -0.01em;
    }
    .brand:hover { color: var(--rdx-red-500); }
    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      background: var(--rdx-red-500);
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      font-size: 0.875rem;
      letter-spacing: 0;
      box-shadow: var(--shadow-md);
    }
    .nav-links {
      display: none;
      align-items: center;
      gap: var(--space-8);
    }
    .nav-links a {
      color: var(--rdx-gray-700);
      font-weight: 500;
      font-size: 0.9375rem;
    }
    .nav-links a:hover { color: var(--rdx-red-500); }
    .nav-cta { display: none; }
    @media (min-width: 1024px) {
  
      .nav-cta { display: inline-flex; }
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid #333;
      border-radius: var(--radius-md);
      color: #F0F0F0;
    }
    .nav-toggle:hover { background: #1a1a1a; }
    @media (min-width: 1024px) {
      .nav-toggle { display: none; }
    }

    .mobile-menu {
      display: none;
      background: #111;
      border-top: 1px solid rgba(192,57,43,0.3);
      padding: var(--space-4) var(--container-pad) var(--space-6);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { display: grid; gap: var(--space-2); margin-bottom: var(--space-4); }
    .mobile-menu a {
      display: block;
      padding: 12px 0;
      color: #CCCCCC;
      font-weight: 500;
      border-bottom: 1px solid #222;
    }

    /* ============================================================
       SEÇÃO 1 — HERO
       ============================================================ */
    .hero {
      position: relative;
      background:
        radial-gradient(circle at 90% 10%, rgba(192,57,43,0.18), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(192,57,43,0.08), transparent 45%),
        linear-gradient(180deg, #080808 0%, #111111 100%);
      color: rgba(255, 255, 255, 0.85);
      overflow: hidden;
      padding-block: 80px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(192,57,43,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192,57,43,0.06) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      pointer-events: none;
    }
    .hero .container { position: relative; }
    .hero-grid {
      display: grid;
      gap: var(--space-12);
      align-items: center;
    }
    @media (min-width: 1024px) {
      .hero { padding-block: 120px; }
      .hero-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-16); }
    }
    .hero h1.display { color: #fff; }
    .hero .subheadline {
      font-size: 1.125rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      max-width: 560px;
      margin-bottom: var(--space-8);
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      margin-bottom: var(--space-8);
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-6) var(--space-8);
      padding-top: var(--space-6);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
    }
    .hero-trust-item svg { flex-shrink: 0; color: var(--rdx-red-400); }

    .hero-visual {
      position: relative;
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(192,57,43,0.12), rgba(0,0,0,0.5)),
        #111111;
      border: 1px solid rgba(192,57,43,0.2);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      display: grid;
      place-items: center;
      padding: var(--space-8);
    }
    .hero-visual svg { width: 100%; height: 100%; }

    /* ============================================================
       SEÇÃO 2 — DOR / PROBLEMA
       ============================================================ */
    .pain {
      background: var(--rdx-navy-800);
      text-align: center;
    }
    .pain .narrow { max-width: 820px; margin-inline: auto; }
    .pain h2 { margin-bottom: var(--space-4); }
    .pain p { color: #CCCCCC; font-size: 1.125rem; }

    /* ============================================================
       SEÇÃO 3 — SERVIÇOS
       ============================================================ */
    .services { background: var(--rdx-navy-900); }
    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto var(--space-12);
    }
    .section-head p { color: #CCCCCC; font-size: 1.125rem; }

    .card-grid {
      display: grid;
      gap: var(--space-6);
    }
    @media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

    .card {
      background: #1A1A1A;
      border: 1px solid #2a2a2a;
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: transform 200ms ease-out, border-color 200ms ease-out;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      transform: translateY(-4px);
      border-color: var(--rdx-red-500);
    }
    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      background: rgba(192,57,43,0.12);
      color: var(--rdx-red-500);
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      flex-shrink: 0;
    }
    .card-icon svg { width: 28px; height: 28px; }
    .card h3 { margin-bottom: 12px; }
    .card p { margin-bottom: 20px; color: #CCCCCC; font-size: 0.9375rem; line-height: 1.55; }
    .card .card-link { margin-top: auto; }

    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: var(--space-12);
    }

    /* ============================================================
       SEÇÃO 4 — BENEFÍCIOS
       ============================================================ */
    .benefits {
      background: var(--rdx-navy-900);
      color: rgba(255, 255, 255, 0.8);
    }
    .benefits .overline { color: var(--rdx-red-400); }
    .benefits .section-head p { color: #CCCCCC; }

    .benefit-grid {
      display: grid;
      gap: var(--space-6);
    }
    @media (min-width: 640px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }

    .benefit {
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      gap: var(--space-4);
      transition: transform 200ms ease-out, border-color 200ms ease-out;
    }
    .benefit:hover {
      transform: translateY(-4px);
      border-color: rgba(192,57,43,0.5);
    }
    .benefit-num {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: rgba(192,57,43,0.15);
      color: var(--rdx-red-400);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.125rem;
    }
    .benefit h3 { color: #fff; margin-bottom: var(--space-2); }
    .benefit p { color: #CCCCCC; margin: 0; font-size: 0.9375rem; }

    /* ============================================================
       SEÇÃO 5 — DIFERENCIAIS
       ============================================================ */
    .differentials { background: var(--rdx-navy-800); }
    .diff-grid {
      display: grid;
      gap: var(--space-6);
    }
    @media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) {
      .diff-grid { grid-template-columns: repeat(3, 1fr); }
      .diff-grid > .diff:nth-child(4) { grid-column: 1 / 2; }
    }

    .diff {
      background: #1A1A1A;
      border: 1px solid #2a2a2a;
      border-left: 3px solid var(--rdx-red-500);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
      transition: transform 200ms ease-out, background 200ms ease-out;
    }
    .diff:hover {
      transform: translateY(-3px);
      background: #222;
    }
    .diff-check {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: var(--radius-full);
      background: rgba(192,57,43,0.12);
      color: var(--rdx-red-500);
      display: grid;
      place-items: center;
    }
    .diff-check svg { width: 16px; height: 16px; }
    .diff h3 { font-size: 1.125rem; margin-bottom: var(--space-2); color: #F0F0F0; }
    .diff p { font-size: 0.9375rem; line-height: 1.55; margin: 0; color: #CCCCCC; }

    /* ============================================================
       SEÇÃO 6 — SOBRE
       ============================================================ */
    .about { background: var(--rdx-navy-900); }
    .about-grid {
      display: grid;
      gap: var(--space-12);
      align-items: center;
    }
    @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); } }
    .about-text p { font-size: 1.0625rem; line-height: 1.7; color: #CCCCCC; }
    .about-visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: linear-gradient(135deg, #1a1a1a 0%, #080808 100%);
      border: 1px solid rgba(192,57,43,0.15);
      display: grid;
      place-items: center;
      padding: var(--space-12);
      box-shadow: var(--shadow-lg);
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6);
      width: 100%;
    }
    .stat {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 2.25rem;
      color: var(--rdx-red-400);
      line-height: 1;
      margin-bottom: var(--space-2);
    }
    .stat-label {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.875rem;
      line-height: 1.4;
    }

    /* ============================================================
       SEÇÃO 7 — COMO FUNCIONA
       ============================================================ */
    .process { background: var(--rdx-navy-800); }
    .steps {
      display: grid;
      gap: var(--space-6);
      position: relative;
    }
    @media (min-width: 768px) {
      .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
    }
    .step {
      background: #1A1A1A;
      border: 1px solid #2a2a2a;
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      transition: transform 200ms ease-out, background 200ms ease-out;
    }
    .step:hover { transform: translateY(-4px); background: #222; }
    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: var(--radius-full);
      background: var(--rdx-red-500);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
      margin-bottom: var(--space-6);
      box-shadow: var(--shadow-orange);
    }
    .step h3 { font-size: 1.25rem; margin-bottom: var(--space-3); color: #F0F0F0; }
    .step p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: #CCCCCC; }

    /* ============================================================
       SEÇÃO 8 — DEPOIMENTOS
       ============================================================ */
    .testimonials { background: var(--rdx-navy-900); }
    .testi-grid {
      display: grid;
      gap: var(--space-6);
    }
    @media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
    .testi {
      background: #1A1A1A;
      border: 1px solid #2a2a2a;
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }
    .quote-icon { color: var(--rdx-red-500); }
    .quote-icon svg { width: 32px; height: 32px; }
    .testi blockquote {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--rdx-gray-700);
      font-style: italic;
      flex-grow: 1;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      margin-top: var(--space-2);
    }
    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-full);
      background: rgba(192,57,43,0.15);
      color: var(--rdx-red-400);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.875rem;
    }
    .testi-name {
      color: var(--rdx-gray-900);
      font-weight: 600;
      font-size: 0.9375rem;
      line-height: 1.3;
    }
    .testi-role {
      color: var(--rdx-gray-500);
      font-size: 0.8125rem;
      line-height: 1.3;
    }

    /* ============================================================
       SEÇÃO 9 — CTA FINAL
       ============================================================ */
    .final-cta {
      background:
        radial-gradient(circle at 80% 20%, rgba(192,57,43,0.22), transparent 45%),
        linear-gradient(135deg, var(--rdx-navy-900) 0%, var(--rdx-navy-800) 100%);
      color: rgba(255, 255, 255, 0.85);
      text-align: center;
    }
    .final-cta .narrow { max-width: 720px; margin-inline: auto; }
    .final-cta h2 { color: #fff; }
    .final-cta p { color: rgba(255, 255, 255, 0.75); font-size: 1.125rem; margin-bottom: var(--space-8); }
    .final-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      justify-content: center;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: #080808;
      color: rgba(255,255,255,0.6);
      padding-block: var(--space-16) var(--space-8);
      border-top: 2px solid #C0392B;
    }
    .footer-grid {
      display: grid;
      gap: var(--space-12);
      margin-bottom: var(--space-12);
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

    .footer-brand .brand { color: #fff; margin-bottom: var(--space-3); }
    .footer-tagline {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.9375rem;
      font-style: italic;
      max-width: 320px;
      margin: 0;
    }
    .footer-col h4 {
      color: var(--rdx-red-500);
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-4);
    }
    .footer-col ul { display: grid; gap: var(--space-3); }
    .footer-col a {
      color: #AAAAAA;
      font-size: 0.9375rem;
      transition: color 150ms ease-out;
    }
    .footer-col a:hover { color: var(--rdx-red-400); }
    .footer-col li {
      display: flex;
      align-items: center;
      gap: var(--space-2);
    }
    .footer-col li svg { color: var(--rdx-red-400); flex-shrink: 0; }
    .footer-bottom {
      padding-top: var(--space-6);
      border-top: 1px solid #1a1a1a;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
    }

    /* ============================================================
       ANIMAÇÕES DE SCROLL (sutis)
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 400ms ease-out, transform 400ms ease-out;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    /* ============================================================
       FAB WHATSAPP (Mobile-friendly)
       ============================================================ */
    .fab-whatsapp {
      position: fixed;
      right: 16px;
      bottom: 16px;
      width: 56px;
      height: 56px;
      border-radius: var(--radius-full);
      background: #25D366;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
      z-index: 90;
      transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    }
    .fab-whatsapp:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
      color: #fff;
    }
    .fab-whatsapp svg { width: 28px; height: 28px; }
    @media (min-width: 768px) {
      .fab-whatsapp { right: 24px; bottom: 24px; }
    }

    /* HEADER — transparente; logo grande no canto, menu à direita */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: transparent;
      border-bottom: none;
      pointer-events: none;
    }

    /* Nav — só o menu, alinhado à direita */
    .nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      min-height: 56px;
      padding: 12px 24px;
      pointer-events: none;
    }

    /* Logo — grande, fixo no canto superior esquerdo */
    .brand {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 110;
      pointer-events: all;
      text-decoration: none;
      line-height: 0;
    }
    .brand-logo {
      height: 120px;
      width: auto;
      display: block;
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.9));
      transition: opacity 0.2s;
    }
    .brand-logo:hover { opacity: 0.9; }
    .brand { transition: opacity 0.4s ease; }
    .brand-mark { display: none !important; }

    /* Logo pequeno fora do desktop (tablet / mobile) */
    @media (max-width: 1023px) {
      .brand-logo { height: 44px; }
    }

    /* Menu links */
    .nav-links {
      display: none;
      align-items: center;
      gap: 2rem;
      list-style: none;
      padding: 0; margin: 0 0 0 auto;
      pointer-events: all;
    }
    .nav-links a {
      color: #ddd;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.2s;
      text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    }
    .nav-links a:hover { color: #C0392B; }
    @media(min-width:1024px) { .nav-links { display: flex; } .nav-toggle { display: none; } }

    .nav-toggle {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      background: rgba(0,0,0,0.6);
      border: 1px solid #555;
      border-radius: 4px; color: #fff;
      cursor: pointer; font-family: inherit;
      margin-left: auto;
      pointer-events: all;
    }
    .nav-toggle:hover { background: rgba(0,0,0,0.9); }
    .mobile-menu {
      display: none;
      background: #0a0a0a;
      border-top: 1px solid rgba(192,57,43,0.3);
      padding: 16px 24px 24px;
      pointer-events: all;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { display: grid; gap: 4px; margin-bottom: 16px; list-style: none; padding: 0; }
    .mobile-menu a { display: block; padding: 12px 0; color: #aaa; border-bottom: 1px solid #1e1e1e; text-decoration: none; }

    /* HERO */
    .hero{position:relative;min-height:100vh;display:flex;align-items:flex-end;overflow:visible;padding-top:0;padding-bottom:120px;color:rgba(255,255,255,0.85);}
    .hero-video-wrap{position:absolute;inset:0;z-index:0;}
    .hero-video{width:100%;height:100%;object-fit:cover;}
    @media(max-width:1023px){
      .hero-video-wrap{background:url('../img/hero-poster.jpg') center top/cover no-repeat;}
      .hero-video{display:none;}
    }
    .hero-video-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(0,0,0,0.88) 0%,rgba(0,0,0,0.65) 60%,rgba(0,0,0,0.3) 100%);}
    .hero-grid{display:grid;gap:3rem;align-items:center;}
    @media(min-width:1024px){.hero{padding-block:140px 100px;}.hero-grid{grid-template-columns:1.1fr 0.9fr;}}
    .hero h1.display{color:#fff;}
    .subheadline{font-size:1.125rem;line-height:1.6;color:rgba(255,255,255,0.75);max-width:560px;margin-bottom:2rem;}
    .hero-ctas{display:flex;flex-wrap:wrap;gap:1rem;}

    /* TICKER no hero */
    .hero-ticker-wrap{position:absolute;bottom:0;left:0;right:0;z-index:3;background:rgba(0,0,0,0.7);border-top:1px solid rgba(192,57,43,0.3);padding:10px 0;overflow:hidden;}
    .ticker-label{display:block;text-align:center;font-size:0.68rem;letter-spacing:0.24em;text-transform:uppercase;color:rgba(255,255,255,0.72);margin-bottom:10px;font-weight:600;text-shadow:0 1px 6px rgba(0,0,0,0.9);}
    .ticker-track{display:flex;align-items:center;gap:0;animation:tickerScroll 34s linear infinite;}
    .ticker-img{height:30px;width:auto;display:block;flex-shrink:0;filter:drop-shadow(0 1px 5px rgba(0,0,0,0.7));}
    .ticker-img:hover{transform:none;}

    @keyframes tickerScroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

    /* BENEFITS com imagem de fundo */
    .benefits{position:relative;color:rgba(255,255,255,0.9);background:linear-gradient(rgba(0,0,0,0.80),rgba(0,0,0,0.80)),url('../img/img0_0.png') center/cover no-repeat;}
    .benefits .container{position:relative;z-index:1;}

    /* CARDS com foto */
    .card--img{padding:0;overflow:hidden;}
    .card-photo{position:relative;width:100%;height:190px;background-size:cover;background-position:center;flex-shrink:0;filter:brightness(0.82);transition:filter 0.4s,transform 0.4s;box-shadow:inset 0 -70px 50px -28px #1A1A1A;}
    .card--img:hover .card-photo{filter:brightness(1);transform:scale(1.03);}
    .card--img .card-icon{margin:-30px 0 18px 24px;position:relative;z-index:2;background:#161616;border:1px solid #2e2e2e;color:var(--rdx-red-400);box-shadow:var(--shadow-md);}
    .card--img h3{padding:0 24px;}
    .card--img p{padding:0 24px;}
    .card--img .card-list{padding:0 24px 24px;}

    /* CARD LIST */
    .card-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px;margin-top:auto;}
    .card-list li{font-size:0.85rem;color:#BBBBBB;padding-left:14px;position:relative;line-height:1.4;}
    .card-list li::before{content:"✓";position:absolute;left:0;color:#C0392B;font-weight:700;font-size:0.75rem;}

    /* FOTO EQUIPE */
    .about-visual-img{position:relative;border-radius:var(--radius-xl);overflow:hidden;border:1px solid rgba(192,57,43,0.25);box-shadow:var(--shadow-lg);}
    .about-team-img{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(0.92);transition:filter 0.4s;}
    .about-visual-img:hover .about-team-img{filter:brightness(1);}
    .about-team-badge{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);padding:32px 20px 16px;font-family:var(--font-display,sans-serif);font-size:0.75rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:#C0392B;}

    /* FOOTER LOGO */
    .footer-brand-logo{height:120px;width:auto;display:block;margin-bottom:12px;}

    /* LEGIBILIDADE GLOBAL */
    .pain h2,.section-head h2{color:#FFFFFF!important;}
    .about-text h2{color:#FFFFFF!important;}
    .benefit h3{color:#FFFFFF!important;}
    .final-cta p{color:rgba(255,255,255,0.85)!important;}
    .footer-tagline{color:#AAAAAA!important;}
    h3{color:#F0F0F0;}
    h4{color:#F0F0F0;}

    /* ── MOBILE FIXES ─────────────────────────────────── */
    @media (max-width: 1023px) {
      /* Logo menor no mobile — não fixo */
      .brand {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 110 !important;
      }
      .brand-logo {
        height: 80px !important;
      }
      /* Nav só mostra o toggle, alinhado direita */
      .nav {
        padding: 10px 16px !important;
        justify-content: flex-end !important;
        min-height: 56px !important;
        background: rgba(0,0,0,0.75) !important;
        backdrop-filter: blur(8px) !important;
      }
      /* Toggle visível no mobile */
      .nav-toggle {
        display: inline-flex !important;
        pointer-events: all !important;
      }
      /* Hero texto não fica atrás do logo */
      .hero {
        align-items: flex-end !important;
        padding-bottom: 60px !important;
      }
      /* Mobile menu cobre tela */
      .mobile-menu {
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
        z-index: 200 !important;
        padding-top: 56px !important;
      }
    }

    /* Esconder toggle no desktop */
    @media (min-width: 1024px) {
      .nav-toggle { display: none !important; }
  
    }


    /* Sem espaço entre hero e ticker */
    .hero { margin-bottom: 0 !important; }
    .hero-ticker-wrap { margin-top: 0 !important; bottom: 0 !important; }
    section + .ticker-wrap, section + div { margin-top: 0 !important; }





    @media (min-width: 1024px) {
      .nav-links { display: flex !important; }
      .nav-toggle { display: none !important; }
    }
    @media (max-width: 1023px) {
      .nav-links { display: none !important; }
    }


    /* ── FORMULÁRIO B2B ──────────────────────────── */
    .form-b2b {
      background: var(--rdx-navy-800);
      border-top: 1px solid rgba(192,57,43,0.3);
      padding-block: var(--space-24);
    }
    .form-b2b-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--space-16);
      align-items: start;
    }
    @media (max-width: 900px) { .form-b2b-grid { grid-template-columns: 1fr; } }
    .form-b2b-left h2 { color: #F0F0F0; margin-bottom: var(--space-4); }
    .form-b2b-desc { font-size: 0.97rem; color: #CCCCCC; line-height: 1.75; margin-bottom: var(--space-6); }
    .form-trust { display: flex; flex-direction: column; gap: 10px; }
    .form-trust-item { font-size: 0.88rem; color: #CCCCCC; }

    .b2b-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: #888;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: #1a1a1a; border: 1px solid #2a2a2a;
      color: #F0F0F0; padding: 12px 14px;
      font-size: 0.9rem; border-radius: var(--radius-sm);
      outline: none; transition: border-color 0.2s; width: 100%;
      font-family: inherit;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: #C0392B; }
    .form-group select option { background: #1a1a1a; }
    .form-group textarea { resize: vertical; }

    .urgencia-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 4px; overflow: hidden; }
    @media(min-width:480px){ .urgencia-grid { grid-template-columns: 1fr 1fr; } }
    .urgencia-opt {
      display: flex; align-items: center; gap: 10px;
      background: #1a1a1a; padding: 12px 14px;
      border: 1px solid transparent; border-radius: var(--radius-sm);
      cursor: pointer; font-size: 0.9rem; color: #CCCCCC;
      transition: border-color 0.2s, color 0.2s;
      box-sizing: border-box; width: 100%; overflow: hidden;
    }
    .urgencia-opt span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .urgencia-opt:hover { border-color: #C0392B; color: #F0F0F0; }
    .urgencia-opt input[type="radio"] { accent-color: #C0392B; flex-shrink: 0; }

    .btn-form-submit {
      background: #C0392B; color: #fff; padding: 16px 32px; width: 100%; margin-top: 6px;
      font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      border: none; cursor: pointer; border-radius: var(--radius-sm);
      transition: background 0.2s; font-family: inherit;
    }
    .btn-form-submit:hover { background: #A93226; }
    .form-privacy { font-size: 0.75rem; color: #444; text-align: center; margin-top: 8px; }

/* ============================================================
   SEÇÃO — TENDÊNCIAS / INSIGHTS (Home)
   ============================================================ */
.trends { background: var(--rdx-navy-800); }
.trend-card { position: relative; padding-top: 44px; }
.trend-tag {
  position: absolute;
  top: 24px; left: 32px;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rdx-red-400);
  background: rgba(192,57,43,0.14);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.trend-card h3 { font-size: 1.15rem; }

/* ============================================================
   CARROSSEL DE NOTÍCIAS — HOME
   ============================================================ */
.trend-carousel { position: relative; overflow: hidden; }
.trend-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.trends-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.trend-carousel { flex: 1 1 auto; min-width: 0; }
.trend-sidebar {
  flex: 0 0 300px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.trend-sidebar h3 {
  font-size: 1rem;
  color: #C0392B;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
}
.trend-sidebar-list { list-style: none; margin: 0; padding: 0; }
.trend-sidebar-list li { border-bottom: 1px solid #222; }
.trend-sidebar-list li:last-child { border-bottom: none; }
.trend-sidebar-list a {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  text-decoration: none;
  padding: 14px 0;
}
.trend-sidebar-list .arrow-mini { color: #C0392B; font-weight: 700; font-size: 1.1rem; line-height: 1.3; }
.trend-sidebar-title {
  display: block;
  color: #F0F0F0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.trend-sidebar-list a:hover .trend-sidebar-title { color: #C0392B; }
.trend-sidebar-date { display: block; color: #888; font-size: 0.78rem; }
@media (max-width: 1000px) {
  .trends-layout { flex-direction: column; }
  .trend-sidebar { flex: 1 1 auto; width: 100%; }
}

.trend-carousel .trend-slide {
  flex: 0 0 calc(25% - 18px);
  text-decoration: none;
  display: block;
}
.trend-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.trend-carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #333; border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.trend-carousel-dots .dot.active { background: #C0392B; transform: scale(1.3); }
@media (max-width: 1100px) {
  .trend-carousel .trend-slide { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 900px) {
  .trend-carousel .trend-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .trend-carousel .trend-slide { flex: 0 0 100%; }
}

/* ============================================================
   PÁGINA insights.html — LISTAGEM DE NOTÍCIAS
   ============================================================ */
.insights-hero { background: var(--rdx-navy-800); text-align: center; padding-block: 72px 48px; }
.insights-hero .narrow { max-width: 720px; margin-inline: auto; }
.insight-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.insight-filter span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #CCC; background: #1a1a1a; border: 1px solid #2a2a2a;
  padding: 8px 16px; border-radius: var(--radius-full);
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid #333;
  color: #CCC;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
}
.modal-close:hover { background: #222; }
.modal-box .trend-tag { position: static; display: inline-block; margin-bottom: 14px; }
.modal-box h2 { font-size: 1.3rem; margin-bottom: 10px; }

.insights-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 1160px;
  margin-inline: auto;
}
.insights-main { flex: 1 1 auto; min-width: 0; max-width: 820px; }
.insights-sidebar { position: sticky; top: 96px; }
.insights-sem-imagem-detalhe {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 8px;
}
@media (max-width: 1000px) {
  .insights-layout { flex-direction: column; }
  .insights-main { max-width: 100%; }
  .insights-sidebar { position: static; width: 100%; }
}
.insight-article {
  background: #1A1A1A;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  scroll-margin-top: 100px;
}
.insight-article .trend-tag { position: static; display: inline-block; margin-bottom: 14px; }
.insight-article h2 { font-size: 1.4rem; margin-bottom: 10px; }
.insight-meta { font-size: 0.8rem; color: #888; margin-bottom: 18px; }
.insight-article ul.card-list { margin: 16px 0 20px; gap: 8px; }
.insight-article ul.card-list li { font-size: 0.92rem; color: #CCC; }
.insight-rdx {
  background: rgba(192,57,43,0.08);
  border-left: 3px solid var(--rdx-red-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
}
.insight-rdx h4 { color: var(--rdx-red-400); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.insight-rdx p { margin: 0; color: #E0E0E0; font-size: 0.95rem; }
.insight-source { font-size: 0.8rem; color: #777; margin-top: 18px; }

/* ============================================================
   TREND CARDS v2 — estilo com imagem no topo (inspirado Rockwell)
   ============================================================ */
.trend-card-v2 { padding: 0; overflow: hidden; }
.trend-card-v2 .trend-photo {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.trend-card-v2 .trend-body { padding: 24px; }
.trend-card-v2 .trend-tag {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}
.trend-card-v2 h3 { font-size: 1.1rem; margin-bottom: 10px; }
.trend-card-v2 p { font-size: 0.9rem; color: #CCC; margin-bottom: 16px; }

.insight-cover {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
