/* Extraído das landing pages da Blend Ideas, que já estavam no ar.
   As regras de `nav` e `footer` por tag foram removidas: as páginas novas
   usam o header e o rodapé de blend-nav.css (prefixo bi-), com navegação completa. */

/* ============ Design Tokens (Blend Ideas) ============ */
    :root {
      --red-500: #E52020;
      --red-600: #CC1A1A;
      --red-700: #A01414;
      --red-900: #3D0808;

      --dark-950: #060610;
      --dark-900: #0D0D1E;
      --dark-800: #141428;
      --dark-700: #1C1C38;
      --dark-600: #252545;

      --neutral-100: #F0F0F8;
      --neutral-300: #C0C0D0;
      --neutral-500: #888898;
      --neutral-700: #444456;

      --whatsapp: #25D366;
      --whatsapp-dark: #128C7E;

      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;

      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-full: 9999px;

      --glow-red: 0 0 40px rgba(204, 26, 26, 0.35), 0 0 80px rgba(204, 26, 26, 0.15);
      --glow-red-sm: 0 0 16px rgba(204, 26, 26, 0.4);
      --glow-green: 0 0 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
    }

    /* ============ Reset ============ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark-950);
      color: var(--neutral-100);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    /* overflow-x no html, não no body: no body o navegador computa
       overflow-y: auto e transforma o body em container de scroll,
       o que gera scroll aninhado e atrapalha o header sticky. */
    html { overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ::selection { background: var(--red-600); color: #fff; }

    /* ============ Background Ambient ============ */
    .stars-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(1px 1px at 20% 30%, #fff 50%, transparent),
        radial-gradient(1px 1px at 80% 60%, #fff 50%, transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.6) 50%, transparent),
        radial-gradient(1.5px 1.5px at 70% 20%, #fff 50%, transparent),
        radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.5) 50%, transparent),
        radial-gradient(1px 1px at 90% 90%, #fff 50%, transparent),
        radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.7) 50%, transparent),
        radial-gradient(1px 1px at 25% 15%, #fff 50%, transparent);
      background-size: 800px 800px, 600px 600px, 700px 700px, 900px 900px, 500px 500px, 800px 800px, 650px 650px, 750px 750px;
      opacity: 0.4;
    }
    .ambient-glow {
      position: fixed;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(204,26,26,0.12) 0%, transparent 70%);
      top: 30%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      pointer-events: none;
      filter: blur(40px);
    }

    /* ============ Nav ============ */
    .nav-brand:hover { opacity: 0.85; }
    .nav-brand img {
      height: 36px;
      width: auto;
      display: block;
    }
    .nav-cta:hover {
      background: var(--red-600);
      box-shadow: var(--glow-red-sm);
    }

    /* ============ Container ============ */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ============ Section Base ============ */
    section {
      position: relative;
      z-index: 1;
      padding: 100px 0;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red-500);
      margin-bottom: 24px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--red-600);
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(34px, 4.5vw, 54px);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .section-title em {
      font-style: normal;
      color: var(--red-600);
    }
    .section-subtitle {
      font-size: 18px;
      color: var(--neutral-300);
      max-width: 680px;
      line-height: 1.7;
    }

    /* ============ Hero ============ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      padding-bottom: 80px;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red-500);
      border: 1px solid rgba(204,26,26,0.35);
      background: rgba(204,26,26,0.08);
      padding: 8px 18px;
      border-radius: var(--radius-full);
      margin-bottom: 32px;
    }
    .hero-tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red-500);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(229,32,32,0.5); }
      50% { opacity: 0.6; transform: scale(0.9); box-shadow: 0 0 0 10px rgba(229,32,32,0); }
    }
    .hero h1 {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(44px, 6.5vw, 80px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--red-600);
      display: block;
    }
    .hero p.lead {
      font-size: 19px;
      color: var(--neutral-300);
      line-height: 1.7;
      max-width: 540px;
      margin-bottom: 40px;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--red-600);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 18px 36px;
      border-radius: var(--radius-full);
      box-shadow: var(--glow-red-sm);
      transition: all 0.25s;
    }
    .cta-primary:hover {
      background: var(--red-500);
      box-shadow: var(--glow-red);
      transform: translateY(-2px);
    }
    .cta-primary svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }
    .cta-secondary-text {
      display: block;
      margin-top: 16px;
      font-size: 13px;
      color: var(--neutral-500);
      letter-spacing: 0.04em;
    }

    /* Hero visual — Data Console */
    .hero-visual {
      position: relative;
      width: 100%;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .data-console {
      position: relative;
      width: 100%;
      max-width: 440px;
      background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow:
        0 0 0 1px rgba(204, 26, 26, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.5),
        var(--glow-red-sm);
      overflow: hidden;
    }
    .data-console::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red-600), transparent);
      animation: scan 4s ease-in-out infinite;
    }
    @keyframes scan {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }
    .data-console-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--dark-600);
      margin-bottom: 20px;
    }
    .data-console-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--neutral-500);
    }
    .data-console-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red-500);
    }
    .data-console-status::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red-500);
      box-shadow: 0 0 8px var(--red-500);
      animation: pulse 2s infinite;
    }

    .data-kpis {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 22px;
    }
    .data-kpi {
      background: var(--dark-900);
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
    }
    .data-kpi-label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--neutral-500);
      margin-bottom: 6px;
    }
    .data-kpi-value {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 24px;
      letter-spacing: -0.01em;
      color: var(--neutral-100);
      line-height: 1;
      margin-bottom: 4px;
    }
    .data-kpi-trend {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      color: var(--red-500);
    }
    .data-kpi-trend svg { width: 10px; height: 10px; }

    .data-chart {
      background: var(--dark-900);
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-sm);
      padding: 18px;
      margin-bottom: 18px;
    }
    .data-chart-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 14px;
    }
    .data-chart-title {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--neutral-300);
    }
    .data-chart-value {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      color: var(--red-500);
    }
    .data-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 70px;
    }
    .data-bar {
      flex: 1;
      background: linear-gradient(180deg, var(--red-500), var(--red-700));
      border-radius: 2px 2px 0 0;
      opacity: 0.85;
      transform-origin: bottom;
      animation: bar-grow 0.8s ease-out backwards;
    }
    @keyframes bar-grow {
      from { transform: scaleY(0.1); opacity: 0; }
      to { transform: scaleY(1); opacity: 0.85; }
    }
    .data-bar:nth-child(1) { height: 28%; animation-delay: 0.1s; }
    .data-bar:nth-child(2) { height: 42%; animation-delay: 0.2s; }
    .data-bar:nth-child(3) { height: 38%; animation-delay: 0.3s; }
    .data-bar:nth-child(4) { height: 55%; animation-delay: 0.4s; }
    .data-bar:nth-child(5) { height: 48%; animation-delay: 0.5s; }
    .data-bar:nth-child(6) { height: 70%; animation-delay: 0.6s; }
    .data-bar:nth-child(7) { height: 82%; animation-delay: 0.7s; }
    .data-bar:nth-child(8) { height: 95%; animation-delay: 0.8s; opacity: 1; box-shadow: 0 -4px 12px rgba(229,32,32,0.4); }

    .data-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .data-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--dark-900);
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-sm);
      font-size: 12px;
    }
    .data-row-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--neutral-300);
      font-weight: 500;
    }
    .data-row-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red-500);
    }
    .data-row-value {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      color: var(--neutral-100);
      letter-spacing: 0.02em;
    }
    .data-row-value span {
      color: var(--red-500);
      font-size: 11px;
      margin-left: 4px;
    }

    /* Decorative floating data tags */
    .data-float {
      position: absolute;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: var(--radius-full);
      background: rgba(204, 26, 26, 0.1);
      border: 1px solid var(--red-700);
      color: var(--red-500);
      backdrop-filter: blur(8px);
      z-index: 3;
      animation: floaty 5s ease-in-out infinite;
    }
    .data-float.a { top: 8%; left: -20px; animation-delay: 0s; }
    .data-float.b { bottom: 12%; right: -10px; animation-delay: -2.5s; }
    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* ============ Problem Section ============ */
    .problem {
      background: linear-gradient(180deg, transparent, var(--dark-900) 30%, var(--dark-900) 70%, transparent);
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .problem-list {
      list-style: none;
      margin-top: 36px;
    }
    .problem-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--dark-600);
      font-size: 16px;
      color: var(--neutral-300);
      line-height: 1.55;
    }
    .problem-list li:last-child { border-bottom: none; }
    .problem-list .x {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(204,26,26,0.15);
      border: 1px solid var(--red-700);
      color: var(--red-500);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      margin-top: 2px;
    }

    /* ============ Method ============ */
    .method-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .step-card {
      background: var(--dark-800);
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .step-card:hover {
      border-color: var(--red-700);
      transform: translateY(-4px);
      box-shadow: var(--glow-red-sm);
    }
    .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red-600), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .step-card:hover::before { opacity: 1; }
    .step-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.18em;
      color: var(--red-500);
      margin-bottom: 18px;
    }
    .step-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      margin-bottom: 14px;
      line-height: 1.1;
    }
    .step-text {
      font-size: 15px;
      color: var(--neutral-300);
      line-height: 1.65;
    }

    /* ============ Levers ============ */
    .levers {
      background: linear-gradient(180deg, transparent, var(--dark-900) 50%, transparent);
    }
    .levers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .lever-card {
      background: var(--dark-800);
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      transition: all 0.3s;
    }
    .lever-card:hover {
      border-color: var(--red-700);
      background: var(--dark-700);
    }
    .lever-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: rgba(204,26,26,0.12);
      border: 1px solid var(--red-700);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red-500);
      margin-bottom: 24px;
    }
    .lever-icon svg { width: 24px; height: 24px; }
    .lever-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
    }
    .lever-text {
      font-size: 15px;
      color: var(--neutral-300);
      line-height: 1.65;
    }

    /* ============ Why Us ============ */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .why-points {
      list-style: none;
      margin-top: 32px;
    }
    .why-points li {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--dark-600);
    }
    .why-points li:last-child { border-bottom: none; }
    .why-points .check {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--red-600);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow-red-sm);
      margin-top: 2px;
    }
    .why-points .check svg { width: 14px; height: 14px; }
    .why-point-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .why-point-text {
      font-size: 15px;
      color: var(--neutral-300);
      line-height: 1.6;
    }

    /* ============ FAQ ============ */
    .faq-list {
      margin-top: 50px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-item {
      border: 1px solid var(--dark-600);
      border-radius: var(--radius-md);
      background: var(--dark-800);
      margin-bottom: 14px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item[open] { border-color: var(--red-700); }
    .faq-item summary {
      cursor: pointer;
      padding: 22px 28px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.01em;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--neutral-100);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 28px;
      color: var(--red-500);
      flex-shrink: 0;
      transition: transform 0.2s;
      line-height: 1;
    }
    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }
    .faq-body {
      padding: 0 28px 24px;
      color: var(--neutral-300);
      font-size: 15px;
      line-height: 1.7;
    }

    /* ============ Final CTA ============ */
    .final-cta {
      text-align: center;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(204,26,26,0.15) 0%, transparent 60%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      filter: blur(40px);
    }
    .final-cta > * { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(40px, 6vw, 72px);
      line-height: 0.98;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      max-width: 880px;
      margin: 0 auto 24px;
    }
    .final-cta h2 em {
      font-style: normal;
      color: var(--red-600);
    }
    .final-cta p {
      font-size: 18px;
      color: var(--neutral-300);
      max-width: 600px;
      margin: 0 auto 44px;
      line-height: 1.7;
    }

    /* ============ Footer ============ */
    .footer-brand:hover { opacity: 0.85; }
    .footer-brand img {
      height: 40px;
      width: auto;
    }
    .footer-contact a:hover { color: var(--red-500); }

    /* ============ Floating WhatsApp ============ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--whatsapp);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow-green), 0 8px 24px rgba(0,0,0,0.4);
      transition: all 0.25s;
      animation: wa-pulse 2.5s ease-in-out infinite;
    }
    .wa-float:hover {
      transform: scale(1.08);
      background: var(--whatsapp-dark);
    }
    .wa-float svg {
      width: 32px;
      height: 32px;
      fill: #fff;
    }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 24px rgba(0,0,0,0.4); }
      50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.4); }
    }
    .wa-tooltip {
      position: absolute;
      right: 76px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--dark-800);
      color: var(--neutral-100);
      font-size: 13px;
      font-weight: 500;
      padding: 10px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--dark-600);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .wa-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: var(--dark-800);
    }
    .wa-float:hover .wa-tooltip { opacity: 1; }

    /* ============ Responsive ============ */
    @media (max-width: 980px) {
      .container { padding: 0 24px; }
      section { padding: 70px 0; }

      .hero { padding-top: 110px; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { height: auto; order: -1; }
      .data-console { max-width: 100%; padding: 20px; }
      .data-kpi-value { font-size: 20px; }
      .data-bars { height: 56px; }
      .data-float.a { top: -4px; left: 8px; }
      .data-float.b { bottom: -4px; right: 8px; }

      .problem-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    /* Degrau intermediário: entre 620px e 900px havia só uma coluna larga,
       o que deixava tablet e notebook pequeno com cara de página quebrada. */
    @media (min-width: 620px) and (max-width: 979px) {
      .problem-grid, .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .prose-grid { grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 36px; }
      /* cards seguem fluidos: repeat(auto-fit, minmax(min(100%,260px),1fr))
         cobre 1, 2 ou 3 colunas sozinho, sem depender de breakpoint. */

      .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
      .wa-float svg { width: 28px; height: 28px; }
      .wa-tooltip { display: none; }
    }

/* CTA por card. Cada segmento e cada serviço ganha o próprio caminho,
   em vez de depender só do link no título. */
.lever-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 14px;
  color: #F02B2B;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.lever-cta:hover { text-decoration: underline; }
.lever-cta span[aria-hidden] { transition: transform .2s ease; }
.lever-cta:hover span[aria-hidden] { transform: translateX(4px); }
.lever-card { display: flex; flex-direction: column; }
.lever-card .lever-text { flex: 1; }
.bi-vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   Seção de texto em duas colunas.
   Substitui o empilhamento de parágrafos que deixava a página com cara de
   documento. O título fica fixo à esquerda no desktop e o texto corre à direita.
   ========================================================================== */
.prose-sec { position: relative; padding: clamp(56px, 8vw, 96px) 0; }
.prose-sec + .prose-sec { padding-top: 0; }
.prose-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .prose-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
  .prose-aside { position: sticky; top: 96px; }
}
.prose-body { display: grid; gap: 18px; }
.prose-p {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted, #C0C0D0);
  font-size: clamp(1rem, .97rem + .11vw, 1.0625rem);
  line-height: 1.75;
}
.prose-p::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 2px;
  background: #CC1A1A;
  border-radius: 2px;
}
.prose-p strong { color: var(--text, #F0F0F8); }

/* Herói da home: recorte do banner. Sem moldura, com halo vermelho atrás,
   que é como a marca ilumina o astronauta. */
.hero-visual--banner { position: relative; isolation: isolate; }
.hero-visual--banner::before {
  content: "";
  position: absolute; z-index: -1;
  inset: 10% 4% 2%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(204,26,26,.30) 0%, rgba(204,26,26,.10) 45%, transparent 70%);
  filter: blur(28px);
}
.hero-visual--banner img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.55));
}
