﻿:root {
      --bg: #f4f7fd;
      --surface: #ffffff;
      --text: #0f172a;
      --muted: #64748b;
      --primary: #1d4ed8;
      --primary-dark: #1e40af;
      --accent: #059669;
      --accent-soft: rgba(5, 150, 105, 0.12);
      --border: #e2e8f0;
      --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
      --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
      --radius: 20px;
      --max-width: 1160px;
      --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
      --wa: #25d366;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(ellipse 80% 50% at 0% -20%, rgba(29, 78, 216, 0.14), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(5, 150, 105, 0.1), transparent),
        var(--bg);
      line-height: 1.65;
      font-size: 1rem;
    }

    main {
      scroll-margin-top: 90px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(100% - 32px, var(--max-width));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(244, 247, 253, 0.88);
      border-bottom: 1px solid var(--border);
    }

    .header__content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 16px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
    }

    .brand__logo {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: linear-gradient(145deg, var(--primary), #3b82f6);
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 10px 28px rgba(29, 78, 216, 0.3);
      font-size: 0.95rem;
      font-weight: 800;
    }

    .nav {
      display: flex;
      gap: 8px 18px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
    }

    .nav a {
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: var(--primary);
      border-bottom-color: rgba(29, 78, 216, 0.35);
      outline: none;
    }

    .nav .nav__cta {
      margin-left: 4px;
      padding: 10px 16px;
      border-radius: 12px;
      background: var(--primary);
      color: #fff;
      border: none;
      font-weight: 700;
    }

    .nav .nav__cta:hover {
      background: var(--primary-dark);
      color: #fff;
      border-bottom-color: transparent;
    }

    .hero {
      padding: 56px 0 40px;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: start;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #047857;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 20px;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(2rem, 4.5vw, 3.35rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
      font-weight: 800;
    }

    .hero__text {
      font-size: 1.125rem;
      color: var(--muted);
      max-width: 54ch;
      margin: 0 0 26px;
    }

    .hero__visual {
      margin: 0 0 26px;
    }

    .hero__visual img {
      width: 100%;
      max-width: 560px;
      height: auto;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: block;
    }

    .price-highlight {
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
      padding: 18px 22px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(59, 130, 246, 0.06));
      border: 1px solid rgba(29, 78, 216, 0.15);
      margin-bottom: 26px;
    }

    .price-highlight__label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .price-highlight__value {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .price-highlight__note {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 24px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: inherit;
    }

    .btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .btn--primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 14px 32px rgba(29, 78, 216, 0.28);
    }

    .btn--primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn--secondary {
      background: var(--surface);
      color: var(--primary);
      border-color: var(--border);
      box-shadow: var(--shadow-sm);
    }

    .btn--secondary:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .btn--wa {
      background: var(--wa);
      color: #fff;
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    }

    .btn--wa:hover {
      filter: brightness(1.05);
      transform: translateY(-2px);
    }

    .hero__stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .stat {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: var(--shadow-sm);
    }

    .stat strong {
      display: block;
      font-size: 1.25rem;
      margin-bottom: 2px;
      color: var(--primary);
      font-weight: 800;
    }

    .stat span {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .hero__card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 92px;
    }

    .card__title {
      margin: 0 0 10px;
      font-size: 1.25rem;
      font-weight: 800;
    }

    .card__list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 14px;
    }

    .card__list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .check {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 0.75rem;
      flex: 0 0 auto;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 28px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid var(--border);
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 600;
    }

    .trust-strip span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section {
      padding: 28px 0 64px;
      scroll-margin-top: 90px;
    }

    .section__header {
      text-align: center;
      margin-bottom: 36px;
    }

    .section__header h2 {
      margin: 0 0 12px;
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .section__header p {
      margin: 0 auto;
      max-width: 58ch;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .feature {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.25s, transform 0.25s;
    }

    .feature:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .feature__icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(29, 78, 216, 0.1);
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    .feature h3 {
      margin: 0 0 8px;
      font-size: 1.1rem;
      font-weight: 800;
    }

    .feature p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }

    .step__number {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--primary), #3b82f6);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .step h3 {
      margin: 0 0 8px;
      font-size: 1.05rem;
      font-weight: 800;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .plans--single {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin: 0 auto;
    }

    .plans--single .plan--featured {
      transform: none;
    }

    .plan {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px 26px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .plan--featured {
      border-color: var(--primary);
      box-shadow: 0 24px 50px rgba(29, 78, 216, 0.15);
      transform: scale(1.02);
    }

    .plan__tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 6px 14px;
      border-radius: 999px;
    }

    .plan h3 {
      margin: 8px 0 6px;
      font-size: 1.2rem;
      font-weight: 800;
    }

    .plan__for {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .plan__price {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .plan__price small {
      font-size: 1rem;
      font-weight: 600;
      color: var(--muted);
    }

    .plan__note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .plan ul {
      margin: 0 0 22px;
      padding-left: 1.1rem;
      color: var(--muted);
      font-size: 0.92rem;
      flex: 1;
    }

    .plan ul li {
      margin-bottom: 8px;
    }

    .faq {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 16px;
      margin-bottom: 12px;
      background: var(--surface);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-item button {
      width: 100%;
      text-align: left;
      padding: 18px 22px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--text);
    }

    .faq-item button:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: -2px;
    }

    .faq-item button .faq__icon {
      font-size: 1.25rem;
      color: var(--primary);
      font-weight: 400;
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .faq-item.is-open button .faq__icon {
      transform: rotate(45deg);
    }

    .faq-item .faq__panel {
      display: none;
      padding: 0 22px 18px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .faq-item.is-open .faq__panel {
      display: block;
    }

    .tabs-dif {
      max-width: 760px;
      margin: 0 auto;
    }

    .tabs-dif__list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
      padding: 4px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--border);
    }

    .tabs-dif__tab {
      flex: 1 1 auto;
      min-width: min(100%, 140px);
      padding: 12px 16px;
      font-family: inherit;
      font-weight: 700;
      font-size: 0.88rem;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .tabs-dif__tab:hover {
      color: var(--primary);
      background: rgba(29, 78, 216, 0.06);
    }

    .tabs-dif__tab:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .tabs-dif__tab[aria-selected="true"] {
      color: var(--primary);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .tabs-dif__panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 26px;
      box-shadow: var(--shadow-sm);
      text-align: left;
    }

    .tabs-dif__panel h3 {
      margin: 0 0 14px;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text);
    }

    .tabs-dif__panel p {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.65;
    }

    .tabs-dif__panel p:last-child {
      margin-bottom: 0;
    }

    .tabs-dif__panel ul {
      margin: 0 0 14px;
      padding-left: 1.25rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .tabs-dif__panel li {
      margin-bottom: 8px;
    }

    .tabs-dif__callout {
      margin-top: 20px;
      padding: 18px 20px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(29, 78, 216, 0.08));
      border: 1px solid rgba(5, 150, 105, 0.2);
      font-size: 0.95rem;
      font-weight: 600;
      color: #0f172a;
      line-height: 1.55;
    }

    .cta {
      padding: 0 0 88px;
    }

    .cta__box {
      background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 45%, #1d4ed8 100%);
      color: #fff;
      border-radius: 28px;
      padding: 40px 36px;
      box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: center;
    }

    .cta__box h2 {
      margin: 0 0 14px;
      font-size: clamp(1.65rem, 3vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .cta__box > div > p {
      color: rgba(255, 255, 255, 0.88);
      margin: 0 0 22px;
      font-size: 1.05rem;
    }

    .cta__panel {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 24px;
    }

    .cta__panel strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 12px;
    }

    .cta__panel ul {
      margin: 0;
      padding-left: 1.2rem;
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.95rem;
    }

    .cta__panel li {
      margin-bottom: 8px;
    }

    .footer {
      padding: 28px 0 100px;
      color: var(--muted);
      font-size: 0.9rem;
      text-align: center;
      border-top: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.5);
    }

    .footer__disclaimer {
      max-width: 640px;
      margin: 14px auto 0;
      font-size: 0.8rem;
      line-height: 1.5;
      opacity: 0.9;
    }

    .footer a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer a:hover {
      color: var(--primary-dark);
    }

    .wa-float {
      position: fixed;
      right: 20px;
      bottom: 22px;
      z-index: 90;
      width: 58px;
      height: 58px;
      border-radius: 999px;
      background: var(--wa);
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wa-float:hover {
      transform: scale(1.06);
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
    }

    .wa-float:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 3px;
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    @media (max-width: 960px) {
      .hero__grid,
      .cta__box {
        grid-template-columns: 1fr;
      }

      .hero__card {
        position: static;
      }

      .features,
      .steps,
      .plans:not(.plans--single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero {
        padding-top: 40px;
      }
    }

    @media (max-width: 640px) {
      .header__content {
        flex-direction: column;
        align-items: stretch;
      }

      .nav {
        justify-content: center;
      }

      .nav .nav__cta {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4px;
      }

      .hero__stats,
      .features,
      .steps,
      .plans:not(.plans--single) {
        grid-template-columns: 1fr;
      }

      .hero__actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .cta__box {
        padding: 28px 22px;
      }
    }

    /* Páginas guia (conteúdo jurídico/informativo) */
    .page-main {
      padding: 28px 0 72px;
    }

    .breadcrumb {
      font-size: 0.875rem;
      color: var(--muted);
      margin: 0 0 20px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .breadcrumb a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .breadcrumb span {
      color: var(--text);
      font-weight: 600;
    }

    .article {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 32px;
      box-shadow: var(--shadow-sm);
      max-width: 820px;
      margin: 0 auto;
    }

    .article h1 {
      margin: 0 0 16px;
      font-size: clamp(1.75rem, 3.2vw, 2.35rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .article .lead {
      font-size: 1.1rem;
      color: var(--muted);
      margin: 0 0 28px;
      line-height: 1.65;
    }

    .article > h2 {
      margin: 2rem 0 12px;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .article p,
    .article li {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .article p {
      margin: 0 0 14px;
    }

    .article ul,
    .article ol {
      margin: 0 0 18px;
      padding-left: 1.35rem;
    }

    .article li {
      margin-bottom: 8px;
    }

    .article a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .article a:hover {
      color: var(--primary-dark);
    }

    .legal-box {
      margin: 24px 0;
      padding: 18px 20px;
      border-radius: 16px;
      background: rgba(29, 78, 216, 0.06);
      border: 1px solid rgba(29, 78, 216, 0.15);
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.6;
    }

    .legal-box strong {
      display: block;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .guide-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      max-width: 900px;
      margin: 28px auto 0;
    }

    .guide-card {
      display: block;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px 20px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
      text-decoration: none !important;
      color: inherit !important;
    }

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

    .guide-card h2 {
      margin: 0 0 8px;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
    }

    .guide-card p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .nav__sub {
      font-size: 0.8rem;
      opacity: 0.95;
    }