:root {
      --color-bg: #FFFFFF;
      --color-navy: #1B3A6B;
      --color-blue: #2B7BC8;
      --color-blue-dark: #2368B0;
      --color-blue-light: #5B9BD5;
      --color-section-alt: #F4F7FB;
      --color-border: #D9E6F2;
      --color-text: #0F1C2E;
      --color-text-muted: #4A5568;
      --color-footer: #0D1C35;
      --color-quote-bg: #EBF4FF;
      --color-cta-orange: #EA580C;
      --color-cta-orange-hover: #C2410C;
      --shadow-cta: 0 4px 18px rgba(234, 88, 12, 0.38);
      /* Montserrat (web) + Tahoma/Arial (sistema): corporativo, limpo, legível */
      --font-heading: "Montserrat", Tahoma, Arial, sans-serif;
      --font-body: "Montserrat", Tahoma, Arial, sans-serif;
      --shadow-card: 0 8px 32px rgba(27, 58, 107, 0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 14px;
      --section-pad: 5rem;
      --max-width: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.65;
      color: var(--color-text);
      background: var(--color-bg);
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--color-blue); text-decoration: none; transition: color 0.2s ease; }
    a:hover { color: var(--color-navy); }

    /* Animação de entrada: texto sempre legível (keyframes completam mesmo sem JS) */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .fade-up {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: no-preference) {
      .fade-up {
        opacity: 0;
        animation: fadeUp 0.6s ease forwards;
      }
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    @media (min-width: 900px) {
      .container { padding: 0 1.5rem; }
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--color-border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 1rem;
    }
    .logo {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--color-navy);
    }
    .logo span { color: var(--color-blue); }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: var(--radius-sm);
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      width: 24px;
      background: var(--color-navy);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .site-header.aberto .nav-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .site-header.aberto .nav-toggle span:nth-child(2) { opacity: 0; }
    .site-header.aberto .nav-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
      position: fixed;
      inset: 72px 0 auto 0;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
      padding: 1rem 1.25rem 1.5rem;
      transform: translateY(-120%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    }
    .site-header.aberto .main-nav {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .main-nav a {
      display: block;
      padding: 0.65rem 0;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }
    .main-nav a:hover { color: var(--color-navy); }

    .nav-cta-wrap { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
    /* CTA fixo no topo: respiro lateral e proporção com o texto */
    .header-inner .nav-cta-wrap .btn {
      padding: 0.6rem 1.6rem;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.35;
      white-space: nowrap;
    }
    @media (min-width: 900px) {
      .nav-toggle { display: none; }
      .main-nav {
        position: static;
        inset: auto;
        background: transparent;
        border: none;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        align-items: center;
        gap: 1.75rem;
      }
      .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
      }
      .main-nav a { padding: 0.5rem 0; }
      .nav-cta-wrap {
        margin-top: 0;
        padding-top: 0;
        border: none;
      }
      .header-inner .nav-cta-wrap .btn {
        padding: 0.56rem 1.85rem;
      }
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9375rem;
      padding: 0.75rem 1.35rem;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--color-blue);
      color: #fff;
      border-radius: var(--radius-md);
    }
    .btn-primary:hover {
      background: var(--color-blue-dark);
      color: #fff;
      transform: translateY(-2px);
    }
    /* CTA único: conversa estratégica / contato — destaque laranja */
    .btn-cta-conversa {
      background: var(--color-cta-orange);
      color: #fff !important;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-cta);
      border-color: transparent;
    }
    .btn-cta-conversa:hover {
      background: var(--color-cta-orange-hover);
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(234, 88, 12, 0.45);
    }
    .btn-cta-conversa:focus-visible {
      outline: 2px solid var(--color-cta-orange-hover);
      outline-offset: 3px;
    }
    .btn-navy {
      background: var(--color-navy);
      color: #fff;
      border-radius: 6px;
    }
    .btn-navy:hover {
      background: var(--color-blue);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      border-color: var(--color-navy);
      color: var(--color-navy);
      border-radius: var(--radius-md);
    }
    .btn-outline:hover {
      border-color: var(--color-blue);
      color: var(--color-blue);
    }
    .btn-ghost {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      border-radius: var(--radius-md);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }
    .btn-light {
      background: #fff;
      color: var(--color-navy);
      border-radius: var(--radius-md);
    }
    .btn-light:hover {
      background: var(--color-section-alt);
      color: var(--color-navy);
      transform: translateY(-2px);
    }

    .btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

    /* Section badge */
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-blue);
      margin-bottom: 1rem;
    }
    .section-badge::before {
      content: "";
      width: 20px;
      height: 2px;
      background: var(--color-blue);
      border-radius: 1px;
    }

    /* Typography */
    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 800;
      line-height: 1.15;
      color: var(--color-navy);
      margin: 0 0 0.75rem;
    }
    h1 { font-size: clamp(1.85rem, 4vw, 2.65rem); letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
    h3 { font-size: 1.15rem; font-weight: 700; }
    .subtitulo {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      color: var(--color-blue);
      margin-bottom: 1rem;
    }
    .lead { color: var(--color-text-muted); font-size: 1.05rem; max-width: 36em; margin: 0; }

    /* Hero */
    .hero {
      background: var(--color-bg);
      padding: 3rem 0 var(--section-pad);
      position: relative;
    }
    .hero-grid {
      display: grid;
      gap: 2.5rem;
      align-items: start;
    }
    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr minmax(280px, 40%);
        gap: 3rem;
      }
      .hero-text { max-width: 60ch; }
    }

    .hero-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .hero-card {
      background: var(--color-section-alt);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.35rem;
      border-left: 4px solid var(--color-blue);
      box-shadow: 0 2px 12px rgba(27, 58, 107, 0.06);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .hero-card:hover {
      box-shadow: var(--shadow-card);
      transform: translateY(-2px);
    }
    .hero-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.65rem;
    }
    .hero-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
    .hero-card p { margin: 0; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.55; }

    /* Stats strip */
    .stats-strip {
      background: var(--color-blue);
      color: #fff;
      padding: 2.25rem 0;
      position: relative;
    }
    .stats-grid {
      display: grid;
      gap: 1.5rem;
      text-align: center;
    }
    @media (min-width: 768px) {
      .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    }
    .stats-item strong {
      display: block;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }
    .stats-item span {
      font-size: 0.9rem;
      opacity: 0.92;
      line-height: 1.45;
    }

    /* Sections */
    .section { padding: var(--section-pad) 0; }
    .section--alt { background: var(--color-section-alt); }

    .two-col {
      display: grid;
      gap: 2rem;
      align-items: start;
    }
    @media (min-width: 900px) {
      .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
    }

    .quote-box {
      background: var(--color-quote-bg);
      border-left: 4px solid var(--color-blue);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 1.35rem 1.5rem;
      margin-top: 1.5rem;
      font-size: 0.98rem;
      color: var(--color-text);
    }

    .card-navy {
      background: var(--color-navy);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .card-navy::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
    }
    .card-navy::after {
      content: "";
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 120px;
      height: 120px;
      background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      pointer-events: none;
      opacity: 0.7;
    }
    .card-navy h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
    .problema-list { list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
    .problema-list li {
      display: flex;
      gap: 0.85rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .problema-list li:last-child { border-bottom: none; }
    .problema-num {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--color-blue);
      color: #fff;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Resolvemos cards */
    .cards-3 {
      display: grid;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    @media (min-width: 768px) {
      .cards-3 { grid-template-columns: repeat(3, 1fr); }
    }
    .service-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      border: 1px solid var(--color-border);
      border-top: 4px solid var(--color-blue);
      box-shadow: 0 4px 20px rgba(27, 58, 107, 0.06);
      transition: box-shadow 0.25s ease, border-top-color 0.25s ease, transform 0.25s ease;
    }
    .service-card:hover {
      box-shadow: var(--shadow-card);
      transform: translateY(-4px);
    }
    .service-card--navy { border-top-color: var(--color-navy); }
    .service-card--blue { border-top-color: var(--color-blue); }
    .service-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
    .service-card p { margin: 0; font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.6; }

    .box-diferencial {
      background: var(--color-navy);
      color: rgba(255, 255, 255, 0.92);
      border-radius: var(--radius-lg);
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    .box-diferencial::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
    }
    .box-diferencial::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 100px;
      background-image: radial-gradient(rgba(91, 155, 213, 0.25) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
    }
    .box-diferencial p { margin: 0; position: relative; z-index: 1; font-size: 1.02rem; line-height: 1.65; }
    .box-diferencial strong { color: #fff; }

    /* Método steps */
    .steps-grid {
      display: grid;
      gap: 1.25rem;
    }
    @media (min-width: 768px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 900px) {
      .steps-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .step-card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1.35rem;
      box-shadow: 0 4px 16px rgba(27, 58, 107, 0.05);
      transition: box-shadow 0.25s ease;
    }
    .step-card:hover { box-shadow: var(--shadow-card); }
    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--color-navy);
      color: #fff;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .step-card h3 { font-size: 0.95rem; color: var(--color-navy); margin-bottom: 0.5rem; }
    .step-card p { margin: 0; font-size: 0.88rem; color: var(--color-text-muted); }

    /* Para quem */
    .para-grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 900px) {
      .para-grid { grid-template-columns: 1fr 1fr; }
    }
    .para-block h2 { margin-bottom: 1.25rem; }
    .check-list, .x-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .check-list li {
      background: var(--color-quote-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 0.95rem 1rem 0.95rem 2.75rem;
      position: relative;
      font-size: 0.95rem;
    }
    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-blue);
      font-weight: 700;
    }
    .x-list li {
      background: #FEF2F2;
      border: 1px solid #FECACA;
      border-radius: var(--radius-md);
      padding: 0.95rem 1rem 0.95rem 2.75rem;
      position: relative;
      font-size: 0.95rem;
      color: var(--color-text);
    }
    .x-list li::before {
      content: "✕";
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: #DC2626;
      font-weight: 700;
      font-size: 0.85rem;
    }

    /* CTA final */
    .cta-final {
      background: var(--color-navy);
      padding: var(--section-pad) 0;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
      z-index: 1;
    }
    .cta-final::after {
      content: "";
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      width: 180px;
      height: 180px;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      pointer-events: none;
    }
    .cta-final .container { position: relative; z-index: 2; max-width: 720px; text-align: center; }
    .cta-final h2 {
      color: #fff;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
    }
    .cta-final .cta-text {
      color: rgba(255, 255, 255, 0.72);
      font-size: 1rem;
      margin: 0 0 1.75rem;
      line-height: 1.65;
    }
    .cta-final .nota {
      margin-top: 1.25rem;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.55);
    }

    /* Footer */
    .site-footer {
      background: var(--color-footer);
      color: rgba(255, 255, 255, 0.78);
      padding: 3.5rem 0 0;
      font-size: 0.92rem;
    }
    .footer-grid {
      display: grid;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
    }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    }
    .site-footer .logo { color: #fff; margin-bottom: 0.85rem; }
    .site-footer .logo span { color: var(--color-blue-light); }
    .site-footer p { margin: 0; line-height: 1.65; }
    .footer-col h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin: 0 0 1rem;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: rgba(255, 255, 255, 0.78); }
    .footer-links a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.25rem 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
    }
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
    .footer-bottom a { color: var(--color-blue-light); }
    .footer-bottom a:hover { color: #fff; }

    @media (max-width: 899px) {
      body.menu-aberto { overflow: hidden; }
    }

    .wa-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1200;
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: #25D366;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(0,0,0,0.22);
      border: 2px solid rgba(255,255,255,0.55);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }
    .wa-float:hover { transform: translateY(-2px); filter: brightness(0.98); box-shadow: 0 16px 36px rgba(0,0,0,0.24); }
    .wa-float:focus-visible { outline: 3px solid rgba(37, 211, 102, 0.35); outline-offset: 3px; }
    .wa-float svg { width: 26px; height: 26px; display: block; }
