:root {
      --amarelo: #ffc400;
      --amarelo-escuro: #e6ae00;
      --preto: #0d1014;
      --cinza-escuro: #161b22;
      --cinza-card: #1a2029;
      --cinza-borda: #29313d;
      --branco: #ffffff;
      --texto: #aab4c0;
      --texto-claro: #d7dde4;
      --verde-zap: #25d366;
      --verde-zap-escuro: #1eb855;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--preto);
      color: var(--texto);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, .logo, .btn, .header-cta, .telefone-grande {
      font-family: 'Archivo', 'Inter', sans-serif;
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .ico { width: 1em; height: 1em; flex-shrink: 0; }

    /* ===== Barra de topo ===== */
    .topbar {
      background: linear-gradient(90deg, var(--amarelo), #ffd84d);
      color: var(--preto);
      padding: 9px 16px;
      font-weight: 600;
      font-size: .92rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .topbar svg { width: 17px; height: 17px; }
    .topbar a { color: var(--preto); font-weight: 800; }

    /* ===== Header ===== */
    header {
      background: rgba(13,16,20,.92);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--cinza-borda);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--branco);
      text-decoration: none;
      letter-spacing: .4px;
    }
    .logo-img {
      height: 56px;
      width: auto;
      display: block;
      border-radius: 8px;
    }
    .logo-fallback {
      display: flex;
      align-items: center;
      gap: 11px;
    }
    .logo .logo-mark {
      width: 40px; height: 40px;
      background: var(--amarelo);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo .logo-mark svg { width: 24px; height: 24px; stroke: var(--preto); }
    .logo span { color: var(--amarelo); }
    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--amarelo);
      color: var(--preto);
      font-weight: 800;
      font-size: .95rem;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 10px;
      white-space: nowrap;
      transition: background .2s, transform .15s;
    }
    .header-cta:hover { background: var(--amarelo-escuro); transform: translateY(-1px); }
    .header-cta svg { width: 17px; height: 17px; stroke: var(--preto); }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      background:
        radial-gradient(ellipse 60% 50% at 75% 0%, rgba(255,196,0,.10), transparent),
        radial-gradient(ellipse 50% 40% at 20% 100%, rgba(255,196,0,.05), transparent),
        linear-gradient(180deg, var(--cinza-escuro), var(--preto));
      text-align: center;
      padding: 84px 24px 72px;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }
    .hero > * { position: relative; }
    .hero .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,196,0,.10);
      border: 1px solid rgba(255,196,0,.45);
      color: var(--amarelo);
      font-weight: 700;
      font-size: .82rem;
      padding: 7px 18px;
      border-radius: 999px;
      margin-bottom: 26px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .hero .badge svg { width: 15px; height: 15px; stroke: var(--amarelo); }
    .hero h1 {
      color: var(--branco);
      font-size: clamp(1.9rem, 5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -.5px;
      max-width: 820px;
      margin: 0 auto 18px;
    }
    .hero h1 em { color: var(--amarelo); font-style: normal; }
    .hero p {
      font-size: 1.12rem;
      color: var(--texto-claro);
      max-width: 600px;
      margin: 0 auto 36px;
    }
    .cta-group {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
      font-weight: 800;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 12px;
      transition: transform .15s, background .2s, box-shadow .2s;
    }
    .btn svg { width: 21px; height: 21px; }
    .btn:hover { transform: translateY(-2px); }
    .btn-ligar {
      background: var(--amarelo);
      color: var(--preto);
      box-shadow: 0 6px 24px rgba(255,196,0,.25);
    }
    .btn-ligar svg { stroke: var(--preto); }
    .btn-ligar:hover { background: var(--amarelo-escuro); }
    .btn-zap {
      background: var(--verde-zap);
      color: var(--branco);
      box-shadow: 0 6px 24px rgba(37,211,102,.22);
    }
    .btn-zap svg { fill: var(--branco); }
    .btn-zap:hover { background: var(--verde-zap-escuro); }
    .hero .micro {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 22px;
      font-size: .9rem;
      color: #7b8694;
    }
    .hero .micro svg { width: 15px; height: 15px; stroke: #7b8694; }

    /* ===== Seções ===== */
    section { padding: 72px 0; }
    .section-tag {
      display: block;
      text-align: center;
      color: var(--amarelo);
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      text-align: center;
      color: var(--branco);
      font-size: clamp(1.5rem, 4vw, 2.3rem);
      font-weight: 900;
      letter-spacing: -.4px;
      margin-bottom: 12px;
    }
    .section-sub {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 48px;
    }

    /* ===== Serviços ===== */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .card {
      background: linear-gradient(180deg, var(--cinza-card), var(--cinza-escuro));
      border: 1px solid var(--cinza-borda);
      border-radius: 16px;
      padding: 30px 26px;
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .card:hover {
      border-color: rgba(255,196,0,.55);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,.35);
    }
    .card .icon {
      width: 54px; height: 54px;
      background: rgba(255,196,0,.10);
      border: 1px solid rgba(255,196,0,.30);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .card .icon svg { width: 28px; height: 28px; stroke: var(--amarelo); }
    .card h3 { color: var(--branco); font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
    .card p { font-size: .95rem; }

    /* ===== Como funciona ===== */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      counter-reset: passo;
    }
    .step {
      background: var(--cinza-card);
      border: 1px solid var(--cinza-borda);
      border-radius: 16px;
      padding: 30px 26px;
    }
    .step::before {
      counter-increment: passo;
      content: counter(passo, decimal-leading-zero);
      display: block;
      font-family: 'Archivo', sans-serif;
      color: var(--amarelo);
      font-weight: 900;
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 16px;
    }
    .step h3 { color: var(--branco); font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
    .step p { font-size: .95rem; }

    /* ===== Diferenciais ===== */
    .diferenciais {
      background: var(--cinza-escuro);
      border-top: 1px solid var(--cinza-borda);
      border-bottom: 1px solid var(--cinza-borda);
    }
    .diff-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 26px;
    }
    .diff { display: flex; gap: 16px; align-items: flex-start; }
    .diff .check {
      width: 38px; height: 38px;
      background: rgba(255,196,0,.10);
      border: 1px solid rgba(255,196,0,.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .diff .check svg { width: 18px; height: 18px; stroke: var(--amarelo); }
    .diff strong { color: var(--branco); display: block; font-size: 1.02rem; }
    .diff p { font-size: .93rem; }

    /* ===== Área de atendimento ===== */
    .regioes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 44px;
    }
    .regioes a,
    .regioes span {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--cinza-card);
      border: 1px solid var(--cinza-borda);
      border-radius: 999px;
      padding: 9px 20px;
      font-size: .93rem;
      font-weight: 500;
      color: var(--texto-claro);
      transition: border-color .2s;
    }
    .regioes a:hover,
    .regioes span:hover { border-color: rgba(255,196,0,.5); }
    .regioes svg { width: 14px; height: 14px; stroke: var(--amarelo); }
    .mapa {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--cinza-borda);
      line-height: 0;
      box-shadow: 0 16px 48px rgba(0,0,0,.4);
    }
    .mapa iframe { width: 100%; height: 430px; border: 0; filter: grayscale(.15) contrast(1.04); }

    /* ===== FAQ ===== */
    details {
      background: var(--cinza-card);
      border: 1px solid var(--cinza-borda);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color .2s;
    }
    details[open] { border-color: rgba(255,196,0,.45); }
    summary {
      cursor: pointer;
      padding: 19px 56px 19px 24px;
      color: var(--branco);
      font-weight: 600;
      list-style: none;
      position: relative;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 12px; height: 12px;
      border-right: 2px solid var(--amarelo);
      border-bottom: 2px solid var(--amarelo);
      transform: translateY(-70%) rotate(45deg);
      transition: transform .2s;
    }
    details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
    details p { padding: 0 24px 20px; }
    details a { color: var(--amarelo); font-weight: 600; }

    /* ===== CTA final ===== */
    .cta-final {
      position: relative;
      background:
        radial-gradient(ellipse 55% 70% at 50% 0%, rgba(255,196,0,.13), transparent),
        var(--cinza-escuro);
      border-top: 1px solid var(--cinza-borda);
      text-align: center;
    }
    .cta-final h2 {
      color: var(--branco);
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 900;
      letter-spacing: -.4px;
      margin-bottom: 12px;
    }
    .cta-final > .container > p { margin-bottom: 30px; }
    .telefone-grande {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--amarelo);
      font-size: clamp(1.7rem, 6vw, 2.7rem);
      font-weight: 900;
      text-decoration: none;
      margin-bottom: 30px;
      letter-spacing: -.5px;
    }
    .telefone-grande svg { width: .9em; height: .9em; stroke: var(--amarelo); }

    /* ===== Footer ===== */
    footer {
      border-top: 1px solid var(--cinza-borda);
      padding: 40px 24px;
      text-align: center;
      font-size: .9rem;
      color: #707b89;
    }
    footer .foot-logo {
      font-family: 'Archivo', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      color: var(--branco);
      letter-spacing: .4px;
    }
    footer .foot-logo span { color: var(--amarelo); }
    footer a { color: var(--amarelo); text-decoration: none; font-weight: 600; }
    footer p + p { margin-top: 6px; }

    /* ===== Botão flutuante WhatsApp ===== */
    .zap-flutuante {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 200;
      background: var(--verde-zap);
      width: 60px; height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 22px rgba(37,211,102,.45);
      text-decoration: none;
      transition: transform .15s;
    }
    .zap-flutuante:hover { transform: scale(1.08); }
    .zap-flutuante svg { width: 32px; height: 32px; fill: var(--branco); }

    /* ===== Barra fixa mobile ===== */
    .barra-mobile {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 150;
      box-shadow: 0 -4px 16px rgba(0,0,0,.5);
    }
    .barra-mobile a {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 8px;
      font-family: 'Archivo', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
    }
    .barra-mobile svg { width: 19px; height: 19px; }
    .barra-mobile .ligar { background: var(--amarelo); color: var(--preto); }
    .barra-mobile .ligar svg { stroke: var(--preto); }
    .barra-mobile .zap { background: var(--verde-zap); color: var(--branco); }
    .barra-mobile .zap svg { fill: var(--branco); }

    @media (max-width: 640px) {
      .barra-mobile { display: flex; }
      .zap-flutuante { display: none; }
      body { padding-bottom: 56px; }
      section { padding: 52px 0; }
      .header-cta { font-size: .88rem; padding: 9px 14px; }
      .topbar { font-size: .82rem; }
    }