*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #AA1122;
      --primary-bright: #D4171D;
      --primary-grad: radial-gradient(64.18% 64.18% at 71.16% 35.69%, #d4171d 50%, #aa1122 100%);
      --secondary: #2A343D;
      --secondary-grad: radial-gradient(64.18% 64.18% at 71.16% 35.69%, #2a343d 50%, #1c2227 100%);
      --muted: #6b7480;
      --border: rgba(42,52,61,0.08);
      --white: #ffffff;
      --surface: #f7f8fa;
      --radius: 10px;
      --radius-lg: 20px;
      --radius-pill: 999px;

      --shadow-sm: 0 1px 2px rgba(42,52,61,0.06), 0 2px 8px rgba(42,52,61,0.06);
      --shadow: 0 4px 12px -2px rgba(42,52,61,0.08), 0 20px 60px -15px rgba(42,52,61,0.15);
      --shadow-lg: 0 12px 32px -8px rgba(42,52,61,0.18), 0 30px 80px -20px rgba(42,52,61,0.25);
      --ring-primary: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);

      --space-section: clamp(3.5rem, 8vw, 6rem);
      --space-gutter: clamp(1.25rem, 4vw, 2rem);

      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --nav-h: 72px;
    }

    html { scroll-behavior: smooth; }

    section, [id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--white);
      color: var(--secondary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }

    p { text-wrap: pretty; }
    h1, h2, h3, h4 { text-wrap: balance; }

    ::selection { background: color-mix(in srgb, var(--primary) 18%, white); }

    /* ── SCROLL PROGRESS ── */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--primary-bright));
      z-index: 200;
      pointer-events: none;
    }
    @supports (animation-timeline: scroll()) {
      .scroll-progress {
        width: 100%;
        transform-origin: 0 50%;
        transform: scaleX(0);
        animation: progress-grow linear both;
        animation-timeline: scroll(root);
      }
      @keyframes progress-grow { to { transform: scaleX(1); } }
    }

    /* ── NAV ── */
    .nav-wrap {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: color-mix(in srgb, white 80%, transparent);
      -webkit-backdrop-filter: blur(16px) saturate(1.6);
      backdrop-filter: blur(16px) saturate(1.6);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s var(--ease-out);
    }

    .nav-wrap.scrolled { box-shadow: var(--shadow-sm); }

    nav {
      padding: 0.85rem var(--space-gutter);
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1280px;
      margin: 0 auto;
      min-height: var(--nav-h);
    }

    .nav-logo img { height: 34px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--secondary);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
      white-space: nowrap;
      position: relative;
    }

    .nav-links > li > a:not(.btn-nav):not(.nav-phone)::after {
      content: '';
      position: absolute;
      left: 0; right: 100%;
      bottom: -6px;
      height: 2px;
      border-radius: 2px;
      background: var(--primary);
      transition: right 0.3s var(--ease-out);
    }

    .nav-links > li > a:not(.btn-nav):not(.nav-phone):hover::after { right: 0; }

    .nav-links a:hover { color: var(--primary); }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--primary) !important;
      font-weight: 600 !important;
    }

    .nav-phone svg { width: 16px; height: 16px; fill: var(--primary); }

    .btn-nav {
      background: var(--primary-grad);
      color: white !important;
      padding: 0.55rem 1.25rem;
      border-radius: var(--radius-pill);
      font-weight: 600 !important;
      box-shadow: 0 6px 18px -6px rgba(170,17,34,0.6);
      transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s !important;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-nav:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 10px 26px -8px rgba(170,17,34,0.7);
      color: white !important;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      cursor: pointer;
      padding: 0;
      width: 44px;
      height: 44px;
      transition: background 0.2s, border-color 0.2s;
    }

    .nav-toggle:hover { background: white; border-color: color-mix(in srgb, var(--primary) 25%, transparent); }

    .nav-toggle svg {
      width: 22px;
      height: 22px;
      stroke: var(--secondary);
      stroke-width: 2;
      stroke-linecap: round;
      fill: none;
    }

    .nav-toggle line { transition: transform 0.3s var(--ease-out), opacity 0.2s; transform-origin: 12px 12px; }

    .nav-toggle[aria-expanded="true"] .ln-top { transform: translateY(5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .ln-mid { opacity: 0; }
    .nav-toggle[aria-expanded="true"] .ln-bot { transform: translateY(-5px) rotate(-45deg); }

    /* ── HERO ── */
    .hero-wrap {
      position: relative;
      overflow: hidden;
    }

    .hero-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('checkcred_assets/main-background.webp') center / cover no-repeat;
      opacity: 0.18;
      z-index: -2;
    }

    .hero {
      padding: clamp(2.5rem, 6vw, 4.5rem) var(--space-gutter) clamp(2rem, 5vw, 3.5rem);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.3rem);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: var(--secondary);
      margin-bottom: 1.25rem;
    }

    .hero h1 span { color: var(--primary); }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-note {
      display: block;
      margin-top: 1.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
    }

    .hero-note strong { color: var(--primary); font-weight: 600; }

    .btn-accent {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--primary-grad);
      color: white;
      border: none;
      border-radius: var(--radius);
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 1rem 1.75rem;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 0 2px rgba(170,17,34,0.25), 0 10px 30px -10px rgba(170,17,34,0.5);
      transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
    }

    .btn-accent::after {
      content: '';
      position: absolute;
      top: 0; left: -80%;
      width: 50%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
      transform: skewX(-20deg);
      transition: left 0.6s var(--ease-out);
      pointer-events: none;
    }

    .btn-accent:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 0 2px rgba(170,17,34,0.25), 0 16px 40px -12px rgba(170,17,34,0.65); }
    .btn-accent:hover::after { left: 130%; }
    .btn-accent:active { transform: translateY(0) scale(0.99); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--primary);
      border: 2px solid color-mix(in srgb, var(--primary) 35%, transparent);
      border-radius: var(--radius);
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      padding: calc(1rem - 2px) 1.75rem;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease-out-expo);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      background: color-mix(in srgb, var(--primary) 5%, transparent);
      transform: translateY(-2px);
    }

    .hero-image { display: flex; justify-content: center; align-items: center; }
    .hero-image img { max-width: 480px; }

    /* ── FEATURES GRID (solution cards) ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.25rem;
      max-width: 1280px;
      margin: 0 auto 4rem;
      padding: 0 var(--space-gutter);
    }

    .feature-item {
      position: relative;
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: white;
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s, background 0.3s;
    }

    .light-section .feature-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: color-mix(in srgb, var(--primary) 25%, transparent);
    }

    .card-flag {
      position: absolute;
      top: -10px;
      right: 1rem;
      background: var(--primary-grad);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.2rem 0.7rem;
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 12px -4px rgba(170,17,34,0.6);
    }

    .dark-section .feature-item {
      background: transparent;
      border-color: transparent;
      box-shadow: none;
    }

    .dark-section .feature-item:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.15);
    }

    .feature-icon {
      width: 56px; height: 56px;
      min-width: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(170,17,34,0.08);
      transition: transform 0.3s var(--ease-out-expo);
    }

    .feature-item:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }

    .feature-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.75; }
    .feature-icon svg.filled { fill: var(--primary); stroke: none; }

    .feature-item h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .feature-item p {
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .feature-item .saiba-mais {
      display: inline-block;
      margin-top: 0.5rem;
      font-weight: 600;
      font-size: 0.875rem;
      transition: translate 0.25s var(--ease-out);
    }

    .feature-item:hover .saiba-mais { translate: 4px 0; }

    .light-section .feature-item p { color: var(--muted); }
    .light-section .feature-item .saiba-mais { color: var(--primary); }

    .dark-section .feature-item h4,
    .dark-section .feature-item p,
    .dark-section .feature-item .saiba-mais { color: white; }

    .dark-section .feature-item .saiba-mais { color: #ffd9dc; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2rem var(--space-gutter);
    }

    .trust-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
    }

    .trust-item svg {
      width: 22px; height: 22px;
      min-width: 22px;
      stroke: var(--primary);
      fill: none;
      stroke-width: 2;
      margin-top: 2px;
    }

    .trust-item h5 { font-size: 0.9rem; font-weight: 600; color: var(--secondary); }
    .trust-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

    /* ── SECTIONS ── */
    section { padding: var(--space-section) var(--space-gutter); }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.35rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.015em;
      margin-bottom: 1rem;
    }

    .section-desc {
      font-size: 1.05rem;
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 3rem;
    }

    .section-head .section-desc { margin-left: auto; margin-right: auto; }

    /* feature bullets (competitor-style checklist) */
    .bullets {
      list-style: none;
      margin: 1.25rem 0 1.75rem;
      display: grid;
      gap: 0.6rem;
    }

    .bullets li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.95rem;
    }

    .bullets svg {
      width: 20px; height: 20px;
      min-width: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.25;
      margin-top: 3px;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.in-view {
      opacity: 1;
      transform: none;
    }

    .features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
    .features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
    .features-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
    .features-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
    .features-grid .reveal:nth-child(6) { transition-delay: 0.24s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ── RED CONSULTAS SECTION ── */
    #consultas {
      background: var(--primary);
      color: white;
    }

    #consultas .section-desc { color: rgba(255,255,255,0.9); }

    .info-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin-bottom: 1.25rem;
      transition: background 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
    }

    .info-card:hover {
      background: rgba(255,255,255,0.13);
      border-color: rgba(255,255,255,0.22);
      transform: translateX(6px);
    }

    .info-card .icon-wrap {
      width: 56px; height: 56px; min-width: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
    }

    .info-card .icon-wrap img { width: 28px; height: 28px; }

    .info-card h4 { color: white; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
    .info-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; }

    /* ── NEGATIVACAO ── */
    .dark-bg-section {
      position: relative;
      background: var(--secondary-grad);
      color: white;
      overflow: hidden;
    }

    .dark-bg-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('checkcred_assets/dark-background.webp') center / cover no-repeat;
      opacity: 0.25;
      z-index: 0;
    }

    .dark-bg-section .container { position: relative; z-index: 1; }

    .dark-bg-section .section-title,
    .dark-bg-section .section-desc { color: white; }
    .dark-bg-section .section-desc { color: rgba(255,255,255,0.85); }

    .neg-image {
      perspective: 1200px;
    }

    .neg-image img {
      border-radius: var(--radius-lg);
      box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
      transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
    }

    .neg-image:hover img {
      transform: rotateY(-4deg) rotateX(2deg) translateY(-6px);
      box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
    }

    /* ── COMO FUNCIONA (steps) ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.25rem;
    }

    .step-card {
      position: relative;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    }

    .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--primary-grad);
      color: white;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 6px 16px -6px rgba(170,17,34,0.6);
    }

    .step-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
    .step-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

    /* ── PLANOS ── */
    #planos { background: var(--surface); }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 460px));
      justify-content: center;
      gap: 1.5rem;
    }

    .plan-card {
      position: relative;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
    }

    .plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    .plan-card.featured {
      border-color: color-mix(in srgb, var(--primary) 40%, transparent);
      box-shadow: var(--shadow);
    }

    .plan-flag {
      position: absolute;
      top: -12px;
      left: 50%;
      translate: -50% 0;
      background: var(--primary-grad);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.25rem 1rem;
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 12px -4px rgba(170,17,34,0.6);
      white-space: nowrap;
    }

    .plan-name {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .plan-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
    }

    .plan-desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.25rem; }

    .plan-card .bullets { margin: 0 0 1.75rem; color: var(--secondary); }
    .plan-card .bullets svg { stroke: var(--primary); }
    .plan-card .bullets li { font-size: 0.95rem; }
    .plan-card .bullets strong { font-weight: 600; }

    .plan-card .btn-accent { margin-top: auto; justify-content: center; }

    /* ── LGPD ── */
    .lgpd-image img { max-width: 380px; margin: 0 auto; }

    /* ── REVENDA ── */
    .revenda-section {
      background: var(--secondary-grad);
      color: white;
    }

    .revenda-section .section-title,
    .revenda-section .section-desc { color: white; }
    .revenda-section .section-desc { color: rgba(255,255,255,0.85); }

    /* ── APP ── */
    .app-section {
      position: relative;
      background: #5c0c14;
      color: white;
      overflow: hidden;
    }

    .app-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('checkcred_assets/main-background.webp') center / cover no-repeat;
      opacity: 0.35;
      z-index: 0;
    }

    .app-section .container { position: relative; z-index: 1; }

    .app-section .section-title,
    .app-section .section-desc { color: white; }
    .app-section .section-desc { color: rgba(255,255,255,0.85); }

    .app-badges {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .app-badges img { height: 52px; width: auto; transition: transform 0.3s var(--ease-out-expo); }
    .app-badges a:hover img { transform: translateY(-3px) scale(1.06); }

    /* o PNG é cortado na borda inferior por design: ancorar o corte
       na borda do bloco para parecer intencional */
    .app-section { padding-bottom: 0; }
    .app-section .split { align-items: end; }
    .app-section .split > div:first-child { padding-bottom: var(--space-section); }

    .app-screens {
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .app-screens img {
      width: min(460px, 100%);
      margin: 2.5rem auto 0;
    }

    /* ── FORM CARD (cadastro) ── */
    #cadastro {
      background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
    }

    .cadastro-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .form-card {
      background: color-mix(in srgb, white 88%, transparent);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      box-shadow: var(--shadow);
    }

    .form-card-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 0.35rem;
    }

    .form-card-sub {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1.75rem;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 0.4rem;
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--secondary);
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      padding: 0.7rem 1rem;
      outline: none;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .form-group input::placeholder { color: rgba(42,52,61,0.35); }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--primary);
      background: white;
      box-shadow: var(--ring-primary);
    }

    .form-group input.error { border-color: #d4171d; box-shadow: 0 0 0 4px rgba(212,23,29,0.12); }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .form-hint {
      font-size: 0.75rem;
      color: #d4171d;
      margin-top: 0.25rem;
      display: none;
    }

    .form-hint.show { display: block; }

    .form-error {
      display: none;
      font-size: 0.8rem;
      color: #d4171d;
      background: rgba(212,23,29,0.07);
      border: 1px solid rgba(212,23,29,0.25);
      border-radius: var(--radius);
      padding: 0.6rem 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .form-error.show { display: block; }

    .form-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 1.25rem 0;
    }

    .btn-primary {
      position: relative;
      overflow: hidden;
      display: block;
      width: 100%;
      background: var(--primary-grad);
      color: white;
      border: none;
      border-radius: var(--radius);
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 0.9rem;
      cursor: pointer;
      transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, opacity 0.25s;
      letter-spacing: 0.02em;
    }

    .btn-primary:hover { transform: translateY(-1px) scale(1.01); box-shadow: 0 12px 28px -10px rgba(170,17,34,0.55); }
    .btn-primary:active { transform: scale(0.99); }
    .btn-primary:disabled { opacity: 0.65; cursor: wait; transform: none; box-shadow: none; }

    .form-terms {
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
      margin-top: 0.75rem;
      line-height: 1.5;
    }

    .form-terms a { color: var(--primary); text-decoration: none; }
    .form-terms a:hover { text-decoration: underline; }

    /* ── TIPO SELECTOR ── */
    .tipo-selector {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .tipo-btn {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--muted);
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.6rem;
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
      min-height: 44px;
    }

    .tipo-btn.active {
      background: color-mix(in srgb, var(--primary) 8%, white);
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: inset 0 0 0 1px var(--primary);
    }

    /* ── SUCCESS ── */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem 1rem;
    }

    .form-success.show { display: block; animation: success-pop 0.5s var(--ease-out-expo); }

    @keyframes success-pop {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    .success-icon {
      width: 56px;
      height: 56px;
      background: rgba(34,197,94,0.12);
      border: 2px solid rgba(34,197,94,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .success-icon svg { width: 28px; height: 28px; stroke: #16a34a; fill: none; stroke-width: 2.5; }

    .success-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }

    .success-text { font-size: 0.875rem; color: var(--muted); }

    /* ── FAQ ── */
    #faq { background: white; }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      gap: 0.75rem;
    }

    .faq-list details {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .faq-list details[open] {
      border-color: color-mix(in srgb, var(--primary) 30%, transparent);
      box-shadow: var(--shadow);
    }

    .faq-list summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.1rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--secondary);
    }

    .faq-list summary::-webkit-details-marker { display: none; }

    .faq-list summary::after {
      content: '+';
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--primary);
      line-height: 1;
      transition: rotate 0.3s var(--ease-out);
    }

    .faq-list details[open] summary::after { rotate: 45deg; }

    .faq-list details p {
      padding: 0 1.5rem 1.25rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--primary);
      padding: 4rem var(--space-gutter) 2rem;
      color: white;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
    }

    .footer-brand img { height: 44px; width: auto; margin-bottom: 0.75rem; }

    .footer-brand p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: 1rem;
      font-weight: 600;
      color: white;
      margin-bottom: 1.25rem;
    }

    .footer-col ul { list-style: none; }

    .footer-col li { margin-bottom: 0.65rem; }

    .footer-col a {
      display: inline-block;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s, translate 0.2s var(--ease-out);
    }

    .footer-col a:hover { color: #ffd9dc; translate: 4px 0; }

    .footer-col p {
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      margin-bottom: 0.65rem;
    }

    .footer-bottom {
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.2);
      text-align: center;
    }

    .footer-bottom p { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

    /* ── FLOATING ACTIONS ── */
    .fab-whatsapp {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 150;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px -6px rgba(18,140,126,0.55);
      transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
    }

    .fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 32px -8px rgba(18,140,126,0.7); }

    .fab-whatsapp svg { width: 28px; height: 28px; fill: white; }

    .back-to-top {
      position: fixed;
      right: 1.45rem;
      bottom: 5.5rem;
      z-index: 150;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: color-mix(in srgb, white 85%, transparent);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      color: var(--secondary);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
      opacity: 0;
      pointer-events: none;
      translate: 0 8px;
      transition: opacity 0.3s, translate 0.3s var(--ease-out), transform 0.2s;
    }

    .back-to-top.visible { opacity: 1; pointer-events: auto; translate: 0 0; }
    .back-to-top:hover { transform: scale(1.08); color: var(--primary); }

    /* ── MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(42,52,61,0.6);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal-overlay.open { display: flex; animation: overlay-in 0.25s ease both; }

    @keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

    .modal {
      background: white;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      max-width: 480px;
      width: 100%;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .modal-overlay.open .modal { animation: modal-in 0.35s var(--ease-out-expo) both; }

    @keyframes modal-in {
      from { opacity: 0; transform: translateY(16px) scale(0.96); }
      to { opacity: 1; transform: none; }
    }

    .modal-close {
      position: absolute;
      top: 1rem; right: 1rem;
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
      min-width: 44px;
      min-height: 44px;
    }

    .modal-close:hover { color: var(--primary); }

    /* ── RESPONSIVE ── */
    /* Tablets / notebooks estreitos */
    @media (max-width: 1100px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .hero-image img { max-width: 400px; }
    }

    /* Tablets em pé / phablets: colunas lado a lado quebram aqui, não em 768 */
    @media (max-width: 920px) {
      .hero { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-ctas { justify-content: center; }
      .hero-image { order: -1; }
      .hero-image img { max-width: 340px; }
      .split, .cadastro-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
      .split > div, .cadastro-inner > div { margin: 0 auto; max-width: 640px; }
      .section-desc { margin-left: auto; margin-right: auto; }
      .bullets { width: fit-content; margin-left: auto; margin-right: auto; }
      .bullets li { text-align: left; }
      .info-card { text-align: left; }
      .app-badges { justify-content: center; }
      .plans-grid { grid-template-columns: minmax(0, 460px); row-gap: 1.75rem; }
    }

    /* Menu mobile */
    @media (max-width: 820px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: color-mix(in srgb, white 96%, transparent);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 0.5rem 0;
      }
      .nav-links.open li { padding: 0.65rem 1.5rem; }
      .nav-toggle { display: inline-flex; }
    }

    /* Smartphones */
    @media (max-width: 600px) {
      .footer-top { grid-template-columns: 1fr; text-align: center; }
      .footer-brand img, .footer-brand p { margin-left: auto; margin-right: auto; }
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 1.5rem; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn-accent, .hero-ctas .btn-outline { justify-content: center; }
      .plan-card { padding: 1.75rem 1.5rem; }
    }

    /* Smartphones pequenos (até 380px) */
    @media (max-width: 380px) {
      .hero h1 { font-size: 1.9rem; }
      .section-title { font-size: 1.45rem; }
      .hero-image img { max-width: 260px; }
      .feature-item { padding: 1.25rem; flex-direction: column; }
      .fab-whatsapp { width: 50px; height: 50px; }
      .back-to-top { bottom: 5rem; }
    }

    /* Monitores grandes: tipografia e respiro acompanham a tela */
    @media (min-width: 1600px) {
      .hero, nav, .features-grid, .trust-inner, .container, .footer-inner { max-width: 1400px; }
      .hero-image img { max-width: 540px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
      html { scroll-behavior: auto; }
    }

    /* ── FOCUS STATES ── */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .btn-accent:focus-visible,
    .btn-nav:focus-visible,
    .btn-primary:focus-visible {
      outline-color: var(--secondary);
      outline-offset: 3px;
    }

    .dark-bg-section a:focus-visible,
    .revenda-section a:focus-visible,
    .app-section a:focus-visible,
    footer a:focus-visible {
      outline-color: white;
    }

/* ============================================================
   ADIÇÕES — site multi-página (header CTAs, páginas internas)
   ============================================================ */
.nav-links { gap: 1.35rem; }
.nav-links > li > a.active { color: var(--primary); }
.nav-links > li > a.active::after { right: 0 !important; }

.nav-cta-group { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.5rem; }

.btn-nav-outline {
  border: 1.5px solid color-mix(in srgb, var(--secondary) 22%, transparent);
  color: var(--secondary) !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-nav-outline:hover { border-color: var(--primary); color: var(--primary) !important; background: color-mix(in srgb, var(--primary) 6%, transparent); }
.btn-nav-outline::after { display:none !important; }

.back-to-top { opacity: 0; pointer-events: none; transition: opacity .3s; }
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* ---- Hero de página interna ---- */
.page-hero {
  background: var(--secondary-grad);
  color: #fff;
  padding: calc(var(--nav-h) + 3.5rem) var(--space-gutter) 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(60% 80% at 85% 10%, rgba(212,23,29,.35), transparent 60%);
  pointer-events:none;
}
.page-hero .inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size:.85rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color:#fff; }
.page-hero .eyebrow-cat {
  display:inline-block; font-size:.8rem; font-weight:600; letter-spacing:.04em;
  text-transform:uppercase; color: var(--primary-bright);
  background: rgba(255,255,255,.08); padding:.35rem .85rem; border-radius: var(--radius-pill); margin-bottom:1.1rem;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height:1.08; margin-bottom: 1.1rem; }
.page-hero p.lead { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.82); max-width: 640px; }
.page-hero .hero-actions { margin-top: 2rem; display:flex; gap:1rem; flex-wrap:wrap; }

.btn-primary, .btn-ghost {
  display:inline-flex; align-items:center; gap:.5rem; font-weight:600; text-decoration:none;
  padding:.95rem 1.8rem; border-radius: var(--radius-pill); transition: transform .25s var(--ease-out-expo), box-shadow .25s, background .2s;
}
.btn-primary { background: var(--primary-grad); color:#fff; box-shadow: 0 10px 26px -8px rgba(170,17,34,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(170,17,34,.7); }
.btn-ghost { background: rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ---- Seções genéricas ---- */
.section { padding: var(--space-section) var(--space-gutter); }
.section .inner { max-width: 1120px; margin: 0 auto; }
.section.alt { background: var(--surface); }
.section-head { text-align:center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--secondary); margin-bottom: 1rem; }
.section-head h2 span { color: var(--primary); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid { display:grid; gap:1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

.card {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width:48px; height:48px; border-radius: 12px; display:flex; align-items:center; justify-content:center;
  background: color-mix(in srgb, var(--primary) 10%, white); color: var(--primary); margin-bottom:1.1rem; font-size:1.4rem;
}
.card h3 { font-size:1.15rem; color: var(--secondary); margin-bottom:.6rem; }
.card p { color: var(--muted); font-size:.95rem; }
.card a.more { display:inline-block; margin-top:1rem; color: var(--primary); font-weight:600; font-size:.9rem; text-decoration:none; }
.card a.more:hover { text-decoration: underline; }

/* ---- Tabela de produtos ---- */
.prod-table { width:100%; border-collapse: collapse; background:#fff; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); }
.prod-table th { background: var(--secondary); color:#fff; text-align:left; padding: .95rem 1.1rem; font-size:.85rem; font-weight:600; }
.prod-table td { padding: .85rem 1.1rem; border-top:1px solid var(--border); font-size:.92rem; color: var(--secondary); }
.prod-table tr:hover td { background: var(--surface); }
.prod-table .price { font-weight:700; color: var(--primary); white-space:nowrap; }
.tag { display:inline-block; font-size:.72rem; font-weight:600; padding:.2rem .6rem; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--primary) 10%, white); color: var(--primary); }

/* ---- Faixa de CTA ---- */
.cta-band { background: var(--primary-grad); color:#fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.5rem); text-align:center; }
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight:800; margin-bottom:.8rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width:600px; margin:0 auto 1.8rem; }
.cta-band .btn-primary { background:#fff; color: var(--primary); }
.cta-band .btn-primary:hover { background:#fff; }

/* ---- Lista de checks ---- */
.check-list { list-style:none; display:grid; gap:.85rem; }
.check-list li { display:flex; gap:.7rem; align-items:flex-start; color: var(--secondary); font-size:.97rem; }
.check-list li::before { content:'✓'; color: var(--primary); font-weight:800; flex:none; }

@media (max-width: 980px){
  .nav-cta-group { margin-left:0; }
}

/* ---- correções: breadcrumb não deve herdar o flex do <nav> global ---- */
nav.breadcrumb, .breadcrumb { display:block; padding:0; min-height:0; max-width:none; margin-left:0; margin-right:0; }
.hero-actions { align-items:center; }
.hero-actions .btn-primary, .hero-actions .btn-ghost { width:auto; flex:0 0 auto; }

/* ---- ícones de linha (substituem os emojis) ---- */
.ico-svg { width: 26px; height: 26px; display:block; }
.card .ico .ico-svg { width: 24px; height: 24px; }
.lk-ic .ico-svg, .result-locked .lock-overlay .ico-svg { width: 30px; height: 30px; margin: 0 auto; }
.btn-primary .ico-svg, .btn-ghost .ico-svg { width: 18px; height: 18px; }
.check-list li .ico-svg { width:18px; height:18px; }

/* ============================================================
   FASE 2 — componentes profissionais (provas sociais, blog)
   ============================================================ */
/* hero com imagem */
.hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items:center; }
.hero-grid .hero-img { position:relative; }
.hero-grid .hero-img img { border-radius: var(--radius-lg); box-shadow: 0 30px 80px -20px rgba(0,0,0,.5); }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; } .hero-grid .hero-img { display:none; } }

/* barra de logos / parceiros */
.logos-bar { background: var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.logos-bar .inner { padding: 2rem var(--space-gutter); text-align:center; }
.logos-bar p { color: var(--muted); font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1.2rem; }
.logos-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:2.5rem; }
.logos-row span { font-weight:800; font-size:1.15rem; color:#9aa3ad; letter-spacing:-.02em; opacity:.85; }

/* faixa de números */
.stats-band { background: var(--secondary-grad); color:#fff; }
.stats-band .inner { display:grid; grid-template-columns: repeat(4,1fr); gap:1.5rem; padding: var(--space-section) var(--space-gutter); text-align:center; }
.stats-band .stat strong { display:block; font-size: clamp(2rem,4vw,2.8rem); font-weight:800; line-height:1; color:#fff; }
.stats-band .stat span { color: rgba(255,255,255,.72); font-size:.9rem; }
@media (max-width: 720px){ .stats-band .inner { grid-template-columns: repeat(2,1fr); } }

/* depoimentos */
.testi { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding:1.8rem; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:1rem; }
.testi .stars { color:#f5a623; letter-spacing:2px; font-size:.9rem; }
.testi p { color: var(--secondary); font-size:.97rem; font-style:italic; }
.testi .who { display:flex; align-items:center; gap:.8rem; margin-top:auto; }
.testi .avatar { width:44px; height:44px; border-radius:50%; background: var(--primary-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; flex:none; }
.testi .who b { display:block; color: var(--secondary); font-size:.92rem; }
.testi .who small { color: var(--muted); font-size:.82rem; }

/* card de produto com preço */
.prod-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding:1.6rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s; display:flex; flex-direction:column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-card .ico { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; background: color-mix(in srgb, var(--primary) 10%, white); color:var(--primary); margin-bottom:1rem; }
.prod-card h3 { font-size:1.1rem; color:var(--secondary); margin-bottom:.4rem; }
.prod-card p { color:var(--muted); font-size:.9rem; margin-bottom:1rem; }
.prod-card .price-from { font-size:.78rem; color:var(--muted); }
.prod-card .price-val { font-size:1.5rem; font-weight:800; color:var(--secondary); line-height:1; margin-bottom:1rem; }
.prod-card .price-val small { font-size:.8rem; font-weight:600; color:var(--muted); }
.prod-card .btn-primary { margin-top:auto; justify-content:center; }

/* blog cards */
.blog-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s; display:flex; flex-direction:column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .cover { aspect-ratio: 16/9; width:100%; object-fit:cover; display:block; background: var(--secondary-grad); }
.blog-card .body { padding:1.4rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }
.blog-card .meta { font-size:.78rem; color:var(--muted); }
.blog-card h3 { font-size:1.05rem; color:var(--secondary); line-height:1.35; }
.blog-card a.more { margin-top:auto; color:var(--primary); font-weight:600; font-size:.88rem; text-decoration:none; }

/* selos de confiança */
.badges-row { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:center; }
.badge-trust { display:flex; align-items:center; gap:.5rem; background:#fff; border:1px solid var(--border); border-radius: var(--radius-pill); padding:.5rem 1rem; font-size:.82rem; font-weight:600; color:var(--secondary); box-shadow: var(--shadow-sm); }
.badge-trust .ico-svg { width:16px; height:16px; color:var(--primary); }

/* divisória pontilhada decorativa */
.section.dotted { background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 22px 22px; }

/* footer extras */
.footer-social { display:flex; gap:.7rem; margin-top:1rem; }
.footer-social a { width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition: background .2s; }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width:18px; height:18px; fill:#fff; }
.footer-badges { display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1rem; }
.footer-badges span { font-size:.72rem; background: rgba(255,255,255,.08); padding:.3rem .7rem; border-radius:6px; color: rgba(255,255,255,.8); }

/* ---- artigo (prose) ---- */
.article { max-width: 760px; margin: 0 auto; padding: var(--space-section) var(--space-gutter); }
.article img.lead-img { width:100%; border-radius: var(--radius-lg); margin-bottom:2rem; box-shadow: var(--shadow-sm); }
.article h2 { font-size:1.5rem; color:var(--secondary); margin:2rem 0 .8rem; }
.article h3 { font-size:1.2rem; color:var(--secondary); margin:1.6rem 0 .6rem; }
.article p { color:#444c55; margin-bottom:1.1rem; line-height:1.8; }
.article ul { margin:0 0 1.2rem 1.2rem; color:#444c55; line-height:1.8; }
.article ul li { margin-bottom:.4rem; }
.article .article-cta { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.6rem; margin:2rem 0; }
.related { background:var(--surface); }
.related .inner { max-width:1120px; margin:0 auto; }

/* ============================================================
   FASE 3 — tipografia (Poppins+Roboto), botões quadrados, mobile
   ============================================================ */
/* corpo em Roboto, títulos em Poppins (igual ao padrão checktudo) */
body { font-family: 'Roboto', 'Poppins', system-ui, sans-serif; }
h1, h2, h3, h4, h5, .nav-logo, .btn-primary, .btn-ghost, .btn-nav, .btn-nav-outline,
.section-head h2, .page-hero h1, .stat strong, .price-val, .cta-band h2 {
  font-family: 'Poppins', sans-serif;
}

/* ---- BOTÕES QUADRADOS (cantos levemente arredondados, estilo checktudo) ---- */
:root { --btn-radius: 6px; }
.btn-primary, .btn-ghost, .btn-nav, .btn-nav-outline,
.prod-card .btn-primary, .placa-box .btn-primary, .doc-box .btn-primary,
.cta-band .btn-primary, .article-cta .btn-primary {
  border-radius: var(--btn-radius);
  letter-spacing: .01em;
  font-weight: 600;
}
.btn-primary, .btn-ghost { padding: .85rem 1.6rem; }
.btn-nav { box-shadow: 0 4px 12px -4px rgba(170,17,34,.5); }
/* botão de seção full no mobile já some pill */

/* ---- NAV: colapsa mais cedo (9 itens + 2 botões) ---- */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); padding: .5rem 0; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open li { padding: .55rem 1.5rem; }
  .nav-links.open .nav-cta-group { flex-direction: column; gap: .6rem; margin: .6rem 0 .3rem; padding: 0 1.5rem; }
  .nav-links.open .btn-nav, .nav-links.open .btn-nav-outline { width: 100%; justify-content: center; text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---- evitar overflow horizontal e tabelas ---- */
html, body { max-width: 100%; overflow-x: hidden; }
.prod-table { min-width: 540px; }
.section .inner > div[style*="overflow-x"] { -webkit-overflow-scrolling: touch; }

/* ---- CADASTRO: empilha no mobile (vence o inline via !important) ---- */
@media (max-width: 820px) {
  #cadGrid { grid-template-columns: 1fr !important; }
  #cadGrid aside { position: static !important; }
}

/* ---- grids genéricos no mobile ---- */
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
  .page-hero { padding-top: calc(var(--nav-h) + 2rem); }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section { padding: 3rem var(--space-gutter); }
  .cta-band { padding: 2rem 1.4rem; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .badges-row { gap: .6rem; }
  .testi { padding: 1.4rem; }
}

/* ---- imagens de blog/related responsivas ---- */
@media (max-width: 600px) {
  .stats-band .inner { gap: 1rem; }
  .logos-row { gap: 1.2rem; }
  .logos-row span { font-size: .95rem; }
  .footer-social { justify-content: center; }
  .footer-badges { justify-content: center; }
}

/* ---- telas muito pequenas (≤360px) ---- */
@media (max-width: 360px) {
  .page-hero h1 { font-size: 1.55rem; }
  .placa-plate input { font-size: 1.5rem; letter-spacing: .12em; }
  .stats-band .stat strong { font-size: 1.7rem; }
}

/* ============================================================
   FASE 4 — Largura 1440px, seta no botão, logos animados,
   menu mobile, rodapé atualizado
   ============================================================ */

/* ---- Largura global 1440px ---- */
nav, .section .inner, .page-hero .inner, .footer-inner,
.stats-band .inner, .logos-bar .inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1600px) {
  nav, .section .inner, .page-hero .inner, .footer-inner,
  .stats-band .inner, .logos-bar .inner,
  .hero, .features-grid, .trust-inner, .container {
    max-width: 1440px;
  }
}

/* ---- Overflow fix global ---- */
*, *::before, *::after { max-width: 100vw; }
html, body { overflow-x: hidden; }
img, video, svg, iframe { max-width: 100%; }
.section, .page-hero, footer, .stats-band, .logos-bar { overflow-x: hidden; }

/* ---- Seta nos botões Eu quero ---- */
.prod-card .btn-primary::after,
.cta-band .btn-primary::after {
  content: ' →';
  margin-left: .3rem;
  transition: margin-left .2s;
}
.prod-card .btn-primary:hover::after,
.cta-band .btn-primary:hover::after {
  margin-left: .6rem;
}

/* ---- Logos animados (marquee) ---- */
.logos-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-marquee::before { left: 0; background: linear-gradient(90deg, var(--primary), transparent); }
.logos-marquee::after { right: 0; background: linear-gradient(270deg, var(--primary), transparent); }

.logos-track {
  display: inline-flex;
  gap: 3.5rem;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.logos-track img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s;
  flex: none;
}
.logos-track img:hover { opacity: 1; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Barra de empresas sobre fundo vermelho ---- */
.logos-bar-red {
  background: var(--primary);
  padding: 2.5rem 0;
  overflow: hidden;
}
.logos-bar-red p {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: 1.4rem;
}

/* ---- Menu mobile melhorado (com ícones) ---- */
@media (max-width: 1040px) {
  .nav-links.open {
    background: #fff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 16px 48px -12px rgba(42,52,61,.2);
    padding: .75rem 0 1rem;
  }
  .nav-links.open li {
    padding: .7rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .nav-links.open a .nav-icon {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  .nav-links.open a .nav-icon svg {
    width: 18px; height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.8;
  }
  .nav-links.open .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: .8rem 1.5rem .4rem;
    padding: 0;
  }
  .nav-links.open .btn-nav,
  .nav-links.open .btn-nav-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: .85rem;
    font-size: 1rem;
  }
}

/* ---- Barra vermelha nos títulos de páginas de texto ---- */
.page-title-bar {
  display: inline-block;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
}
.page-title-bar h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
}

/* ---- Veicular: resultado ao lado no desktop ---- */
@media (min-width: 900px) {
  .veicular-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .veicular-split .result-card {
    max-width: none;
    margin: 0;
  }
}

/* ---- Planos: card destacado ---- */
.plan-popular {
  border: 2px solid var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan-popular .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-grad);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem 1.2rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ---- Blog: layout estilo checktudo ---- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.blog-sidebar .sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.blog-sidebar .sidebar-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--primary);
}
.blog-sidebar .sidebar-card ul { list-style: none; }
.blog-sidebar .sidebar-card li { margin-bottom: .7rem; }
.blog-sidebar .sidebar-card a {
  color: var(--secondary);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.blog-sidebar .sidebar-card a:hover { color: var(--primary); }
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.blog-categories a {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.blog-categories a:hover,
.blog-categories a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-search {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}
.blog-search input {
  flex: 1;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.blog-search input:focus { border-color: var(--primary); }
.blog-search button {
  background: var(--primary-grad);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .7rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 860px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* ---- API: blocos de código ---- */
.code-block {
  background: #1e1e2e;
  border-radius: var(--radius);
  padding: 1.4rem;
  overflow-x: auto;
  margin: 1rem 0;
  font-family: 'Roboto Mono', monospace;
  font-size: .85rem;
  color: #cdd6f4;
  line-height: 1.6;
}
.code-block .kw { color: #cba6f7; }
.code-block .str { color: #a6e3a1; }
.code-block .num { color: #fab387; }
.code-block .cm { color: #585b70; }

/* ---- Comparativo (antifraude, etc) ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: var(--secondary);
  color: #fff;
  padding: 1rem;
  font-size: .9rem;
  font-weight: 600;
}
.compare-table td {
  padding: .85rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .92rem;
}
.compare-table tr:hover td { background: var(--surface); }
.compare-table .check-yes { color: #16a34a; font-weight: 700; }
.compare-table .check-no { color: #dc2626; }


/* ============================================================
   FASE 5 - correcoes: nav-icon so no mobile, logos parceiros
   ============================================================ */
/* icones dos links aparecem APENAS no menu mobile aberto */
.nav-links .nav-icon { display: none; }
@media (max-width: 1040px) {
  .nav-links.open a .nav-icon { display: inline-flex; }
}

/* logos de parceiros ja sao PNG brancos com transparencia */
.logos-bar-red .logos-track img {
  height: 46px;
  width: auto;
  filter: none;
  opacity: .9;
}
.logos-bar-red .logos-track img:hover { opacity: 1; }

/* ============================================================
   FASE 6 - cores solidas (sem radial), botoes quadrados, gap topo
   ============================================================ */
/* substitui gradientes radiais por cores solidas */
:root {
  --primary-grad: #AA1122;
  --secondary-grad: #2A343D;
}

/* remove brilhos/overlays radiais */
.page-hero::after { display: none !important; }
.hero-phone-glow { display: none !important; }

/* botoes quadrados em todo o site (inclui mobile) */
.btn-primary, .btn-ghost, .btn-nav, .btn-nav-outline,
a.btn-primary, a.btn-ghost, button.btn-primary,
.cta-band .btn-primary, .prod-card .btn-primary,
.placa-box .btn-primary, .doc-box .btn-primary,
.article-cta .btn-primary, .tipo-btn {
  border-radius: 6px !important;
}

/* remove o espaco extra no topo do hero (nav e sticky, nao precisa do offset) */
.page-hero { padding-top: 2.5rem !important; }
@media (max-width: 760px) {
  .page-hero { padding-top: 1.75rem !important; }
}

/* ============================================================
   FASE 7 - TUDO QUADRADO (sem bordas arredondadas em nada)
   ============================================================ */
:root { --radius: 0; --radius-lg: 0; --radius-pill: 0; --btn-radius: 0; }
*, *::before, *::after { border-radius: 0 !important; }

/* ============================================================
   FASE 8 - home: produtos 4/linha, logos centralizados, stats
   ============================================================ */
/* produtos: 4 por linha no desktop */
.prod-grid { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px)  { .prod-grid { grid-template-columns: 1fr !important; } }

/* carrossel de logos centralizado e preenchendo a largura */
.logos-marquee { display: flex; justify-content: center; }
.logos-track { animation: marquee 38s linear infinite; }

/* bloco de numeros: fonte maior e centralizado */
.stats-band .inner { text-align: center; justify-items: center; }
.stats-band .stat { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stats-band .stat strong { font-size: clamp(2.6rem, 5vw, 3.8rem) !important; }
.stats-band .stat span { font-size: 1rem; }

/* ============================================================
   FASE 9 - stats hero + stats-band (maiusculas, centralizado,
   label proporcional) e proporcao do resultado de credito
   ============================================================ */
/* stats do hero (empilhado, label maiusculo e proporcional) */
.hero-stats { display:flex; gap:2.8rem; flex-wrap:wrap; margin-top:2.2rem; }
.hero-stats .hstat { display:flex; flex-direction:column; }
.hero-stats .hstat strong { color:#fff; font-size:clamp(2.2rem,3vw,2.8rem); font-weight:800; line-height:1; }
.hero-stats .hstat span { color:rgba(255,255,255,.75); font-size:clamp(.85rem,1vw,1rem); font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-top:.45rem; }
@media (max-width:560px){ .hero-stats { gap:1.6rem; } }

/* stats-band: 4 numeros centralizados, label MAIUSCULO e proporcional */
.stats-band .inner {
  display:flex !important;
  flex-wrap:wrap;
  justify-content:center;
  gap:clamp(2rem,6vw,5rem);
  text-align:center;
}
.stats-band .stat { display:flex; flex-direction:column; align-items:center; }
.stats-band .stat strong { font-size:clamp(2.6rem,4vw,3.6rem) !important; line-height:1; }
.stats-band .stat span {
  text-transform:uppercase;
  font-size:clamp(.9rem,1.2vw,1.1rem);
  font-weight:600;
  letter-spacing:.05em;
  margin-top:.55rem;
  color:rgba(255,255,255,.8);
}

/* resultado da credito em proporcao menor */
.cred-result { max-width:540px; }
.cred-result iframe { height:180px !important; }

/* ============================================================
   FASE 10 - polimento mobile (iPhone) e proporcao
   ============================================================ */
@media (max-width: 768px) {
  .page-hero { padding-top: 2rem !important; padding-bottom: 2.2rem; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); line-height: 1.15; }
  .page-hero p.lead { font-size: 1rem; }
  .hero-stats { gap: 1.3rem 2.2rem; margin-top: 1.6rem; }
  .hero-stats .hstat strong { font-size: 1.9rem; }
  .hero-stats .hstat span { font-size: .78rem; }
  .section { padding: 2.8rem var(--space-gutter); }
  .section-head { margin-bottom: 2rem; }
}
@media (max-width: 600px) {
  .stats-band .inner { gap: 1.8rem 2.4rem; }
  .stats-band .stat strong { font-size: 2.3rem !important; }
  .stats-band .stat span { font-size: .82rem; }
  .doc-row .btn-primary { font-size: 1rem; padding: 1rem; }
  .cta-band { padding: 2rem 1.3rem; }
  .testi { padding: 1.4rem; }
  /* evita qualquer overflow horizontal no iphone */
  .hero-grid, .cred-grid, .grid { min-width: 0; }
  .hero-grid > *, .cred-grid > *, .grid > * { min-width: 0; }
}

/* ============================================================
   FASE 11 - alinhar nav/logo com o conteudo (mesma borda esq.)
   ============================================================ */
nav { max-width: calc(1440px + 2 * var(--space-gutter)); }
@media (min-width: 1600px) {
  nav { max-width: calc(1440px + 2 * var(--space-gutter)); }
}

/* ============================================================
   FASE 12 - iOS Safari: evitar zoom no foco e ajuste de texto
   ============================================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (max-width: 600px) {
  input, select, textarea { font-size: 16px !important; }
  .doc-row input { font-size: 16px !important; }
}

/* ============================================================
   FASE 13 - botoes padronizados (estilo CONSULTAR AGORA)
   ============================================================ */
.btn-primary, .btn-ghost, .cta-band .btn-primary, .prod-card .btn-primary {
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}

/* ============================================================
   FASE 14 - caixa de resultado da credito preenche a coluna
   ============================================================ */
.cred-result { max-width:none !important; min-height:480px; display:flex; flex-direction:column; }
.cred-result .placeholder { margin:auto 0; }
@media (max-width:900px){ .cred-result { min-height:auto; } }

/* ============================================================
   FASE 15 - rodape: 5 colunas desktop, 2x2 no mobile
   ============================================================ */
.footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; }
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.2rem; text-align: left; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img, .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social, .footer-badges { justify-content: center; }
  .footer-col-empresa  { order: 1; }
  .footer-col-solucoes { order: 2; }
  .footer-col-links    { order: 3; }
  .footer-col-contato  { order: 4; }
  .footer-col h4 { margin-bottom: .9rem; }
}

/* ============================================================
   FASE 16 - menu fixo (PC e mobile)
   ============================================================ */
.nav-wrap { position: fixed !important; top: 0; left: 0; right: 0; }
body { padding-top: var(--nav-h); }

/* ============================================================
   FASE 17 - eyebrow (titulo/rotulo de pagina) vermelho -> branco
   ============================================================ */
.page-hero .eyebrow-cat { color: #fff !important; background: rgba(255,255,255,.14); }

/* ============================================================
   FASE 18 — itens 1-20 (batch final)
   ============================================================ */

/* Item 1: X de fechar mobile — vermelho, convencional */
.nav-toggle[aria-expanded="true"] svg line {
  stroke: var(--primary) !important;
  stroke-width: 2.5;
}

/* Item 8: stats-band 2 por linha no mobile */
@media (max-width: 600px) {
  .stats-band .inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 1.2rem !important;
  }
}

/* Item 9: check-list — icone de check vermelho estilo Checkcred */
.check-list li::before {
  content: '' !important;
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex: none;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23AA1122' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Item 10: badges de confiança — mesmo tamanho */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
}
.badges-row .badge-trust {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 260px;
  justify-content: center;
  text-align: center;
  padding: .65rem 1rem;
}
@media (max-width: 600px) {
  .badges-row .badge-trust { min-width: 140px; font-size: .78rem; }
}

/* Item 3: checkbox termos no cadastro */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 1rem 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.terms-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.terms-check a { color: var(--primary); }

/* Item 14: planos FAQ — estilo acordeão recolhível */
.planos-faq { max-width: 760px; margin: 0 auto; display: grid; gap: .75rem; }
.planos-faq details {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.planos-faq details[open] {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: var(--shadow);
}
.planos-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--secondary);
}
.planos-faq summary::-webkit-details-marker { display: none; }
.planos-faq summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  transition: rotate .3s var(--ease-out);
}
.planos-faq details[open] summary::after { rotate: 45deg; }
.planos-faq details p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* stats-band: 5 itens (inclui SERVIDOR UPTIME) */
.stats-band .inner {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}
@media (max-width: 600px) {
  .stats-band .inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 1rem !important;
    justify-items: center;
  }
  .stats-band .stat:last-child {
    grid-column: 1 / -1;
  }
}

/* FASE 19 — hero-stats mobile center */
@media (max-width:560px){
  .hero-stats { justify-content:center; text-align:center; }
  .hero-stats .hstat { align-items:center; }
}

/* FASE 20 - alinhamento dos botoes de hero (corrige width:100% herdado) */
.hero-actions .btn-primary, .hero-actions .btn-ghost { width:auto !important; display:inline-flex !important; justify-content:center; align-items:center; text-align:center; }
@media (max-width:560px){ .hero-actions { justify-content:center; } .hero-actions .btn-primary, .hero-actions .btn-ghost { width:100% !important; } }

/* FASE 21 - responsivo global + hero estavel no mobile */
html { overflow-x: clip; }
body { overflow-x: clip; }
img, svg, video, iframe, table { max-width: 100%; }
.metrics { justify-items: center; }
@media (max-width:600px){
  /* Hero: sempre 2x2, igual em qualquer largura de celular */
  .hero-stats { display:grid !important; grid-template-columns:repeat(2,1fr); gap:1.5rem 1rem; justify-items:center; width:100%; }
  .hero-stats .hstat { align-items:center; text-align:center; }
  /* Metricas (pagina API e afins) centralizadas */
  .metrics { grid-template-columns:repeat(2,1fr) !important; gap:1.8rem 1rem; max-width:420px; margin-left:auto; margin-right:auto; }
}

/* FASE 22 - centralizacao definitiva dos botoes de hero no mobile */
@media (max-width:560px){
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost {
    display:flex !important; width:100% !important;
    justify-content:center !important; align-items:center !important;
    text-align:center !important; padding-left:1rem !important; padding-right:1rem !important;
  }
}

/* FASE 23 - check-list (conteudo inline, icone fixo a esquerda) + botoes hero definitivo */
.check-list li { display:block !important; position:relative; padding-left:1.9rem; }
.check-list li::before { position:absolute !important; left:0; top:.15rem; }
.check-list li .ico-svg { position:absolute; left:0; top:.1rem; }
@media (max-width:560px){
  .page-hero .hero-actions { flex-direction:column !important; align-items:center !important; }
  .page-hero .hero-actions .btn-primary,
  .page-hero .hero-actions .btn-ghost {
    display:flex !important; width:100% !important; box-sizing:border-box !important;
    justify-content:center !important; align-items:center !important;
    text-align:center !important; letter-spacing:0 !important;
  }
}

/* FASE 25 - blindagem responsiva geral (sem alterar conteudo) */
.grid > *, .hero-grid > *, .cred-grid > *, .api-grid > *,
.blog-layout > *, .blog-grid > *, .footer-top > * { min-width: 0; }
.api-grid, .cred-grid, .hero-grid, .blog-layout, .grid { min-width: 0; }
.code-window, .code-window pre, .code-block { max-width: 100%; }
img, svg, video, iframe, table { max-width: 100%; }
.prod-table { width: 100%; }
@media (max-width: 600px){
  .article-cta .btn-primary, .cta-band .btn-primary { width: 100%; justify-content: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { max-width: 100%; box-sizing: border-box; }
}
@media (max-width: 380px){
  .inner { padding-left: 1rem !important; padding-right: 1rem !important; }
}
