/* ── ESTILOS ESPECÍFICOS DA HOME — REDESIGN APROVADO ─── */
    .section { padding: 88px 0; }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      background: var(--offwhite);
      padding: 64px 0 72px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--borda);
    }
    .hero::before {
      content: '';
      position: absolute;
      right: -60px; top: -120px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(121,137,112,0.08) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero__inner {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 64px;
      align-items: center;
      position: relative; z-index: 1;
    }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(121,137,112,0.10); color: var(--verde-dark);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em;
      text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
      margin-bottom: 20px; border: 1px solid rgba(121,137,112,0.2);
    }
    .hero__badge-dot {
      width: 6px; height: 6px;
      background: var(--verde); border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

    .hero h1 {
      font-size: clamp(2rem, 4.2vw, 3rem);
      line-height: 1.18;
      letter-spacing: -0.025em;
      margin-bottom: 18px;
      color: var(--azul);
    }
    .hero h1 em { font-style: italic; color: var(--verde); }
    .hero h1 strong { font-weight: 700; color: var(--azul); }

    .hero__subtitle {
      font-size: 1.05rem;
      color: var(--texto-suave);
      line-height: 1.8;
      margin-bottom: 32px;
      max-width: 500px;
    }

    /* Chips de serviços */
    .hero__chips {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
    }
    .hero__chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--branco); border: 1px solid var(--borda);
      border-radius: var(--radius-sm); padding: 8px 14px;
      font-size: 0.8rem; font-weight: 600; color: var(--azul);
      text-decoration: none; transition: var(--trans);
      box-shadow: 0 1px 4px rgba(73,80,95,0.05);
    }
    .hero__chip:hover {
      border-color: var(--verde); color: var(--verde-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(121,137,112,0.15);
    }
    .hero__chip svg { flex-shrink: 0; }

    .hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn--lg { padding: 16px 32px; font-size: 0.95rem; }

    /* Card lateral — com selo no header azul */
    .hero__card {
      background: var(--branco);
      border-radius: var(--radius);
      border: 1px solid var(--borda);
      box-shadow: var(--sombra-md);
      overflow: hidden;
    }
    .hero__card-top {
      background: var(--azul); padding: 16px 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .hero__card-top-seal {
      width: 38px; height: 38px; flex-shrink: 0; opacity: 0.88;
      border-radius: 50%; background: rgba(255,255,255,0.08);
    }
    .hero__card-top-title {
      font-family: var(--font-serif); font-size: 0.88rem;
      color: var(--branco); font-weight: 600; line-height: 1.3;
    }
    .hero__card-top-sub { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
    .hero__card-body { padding: 4px 0; }
    .hero__card-row {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 13px 20px;
      border-bottom: 1px solid rgba(73,80,95,0.06);
    }
    .hero__card-row:last-child { border-bottom: none; }
    .hero__card-row-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: var(--offwhite); border-radius: var(--radius-xs);
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .hero__card-row-icon svg { width: 15px; height: 15px; }
    .hero__card-row-label {
      font-size: 0.63rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--verde-dark); margin-bottom: 3px;
    }
    .hero__card-row-value {
      font-size: 0.83rem; color: var(--texto); font-weight: 500; line-height: 1.55;
    }
    .hero__card-row-value a { color: var(--azul); }
    .hero__card-row-value a:hover { color: var(--verde-dark); text-decoration: underline; }

    /* ─── TRUST BAR ─────────────────────────────────────────── */
    .trust-bar { background: var(--azul); padding: 22px 0; }
    .trust-bar__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 0; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 28px; color: rgba(255,255,255,0.85);
    }
    .trust-item__icon { font-size: 1.3rem; }
    .trust-item__text { display: flex; flex-direction: column; font-size: 0.78rem; line-height: 1.4; }
    .trust-item__text strong { color: var(--branco); font-weight: 600; font-size: 0.82rem; }
    .trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

    /* ─── SERVIÇOS ──────────────────────────────────────────── */
    .services { background: var(--offwhite); }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }
    .svc-card {
      background: var(--branco); border: 1px solid rgba(73,80,95,0.10);
      border-radius: 14px; padding: 28px 22px 20px;
      display: flex; flex-direction: column; gap: 14px;
      text-decoration: none; color: inherit;
      transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s; cursor: pointer;
    }
    .svc-card:hover {
      box-shadow: 0 12px 36px rgba(73,80,95,0.13);
      transform: translateY(-4px); border-color: var(--verde);
    }
    .svc-card__icon {
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px; background: var(--offwhite); transition: background 0.22s;
    }
    .svc-card:hover .svc-card__icon { background: rgba(121,137,112,0.12); }
    .svc-card__icon svg { width: 28px; height: 28px; }
    .svc-card__title {
      font-family: var(--font-serif); font-size: 0.96rem;
      font-weight: 600; color: var(--azul); line-height: 1.35; margin: 0;
    }
    .svc-card__footer {
      display: flex; align-items: center; justify-content: space-between; margin-top: auto;
    }
    .svc-card__badge {
      font-size: 0.64rem; font-weight: 700; letter-spacing: 0.03em;
      padding: 3px 9px; border-radius: 100px;
    }
    .svc-card__badge--online  { background: rgba(26,107,60,0.09); color: #1a6b3c; }
    .svc-card__badge--default { background: rgba(73,80,95,0.07);  color: var(--texto-suave); }
    .svc-card__badge--agenda  { background: rgba(121,137,112,0.1);color: var(--verde-dark); }
    .svc-card__badge--sabado  { background: rgba(73,80,95,0.10);  color: var(--azul); }
    .svc-card__arrow { font-size: 0.85rem; color: var(--borda); transition: color 0.2s, transform 0.2s; }
    .svc-card:hover .svc-card__arrow { color: var(--verde); transform: translateX(3px); }

    /* ─── COMO FUNCIONA — com linha conectora ──────────────── */
    .how { background: var(--branco); }
    .how__steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 40px; margin-bottom: 48px;
      position: relative;
    }
    /* Linha conectora horizontal */
    .how__steps::before {
      content: '';
      position: absolute;
      top: 27px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
      height: 2px;
      background: linear-gradient(90deg, var(--verde-light), var(--verde), var(--verde-light));
      z-index: 0;
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step__num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--branco); border: 2px solid var(--verde);
      color: var(--verde-dark); font-size: 1.3rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 0 0 6px var(--branco);
    }
    .step h3 { font-size: 1rem; margin-bottom: 10px; }
    /* Aviso legal */
    .aviso-legal {
      background: var(--bege); border-left: 4px solid var(--nude);
      border-radius: var(--radius-sm); padding: 20px 24px;
      display: flex; gap: 16px; align-items: flex-start;
    }
    .aviso-legal__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .aviso-legal p { font-size: 0.875rem; color: var(--texto-suave); margin: 0; }

    /* ─── LOCALIZAÇÃO — mapa imersivo ───────────────────────── */
    .location {
      background: var(--azul-escuro, #1a2332);
      position: relative;
      padding: 0;
      overflow: hidden;
    }
    .location__map-bg {
      position: relative;
      width: 100%;
      height: 520px;
    }
    .location__map-bg iframe {
      width: 100%; height: 100%; border: none; display: block;
      filter: grayscale(15%) contrast(1.05);
    }
    /* Gradiente sobre o mapa para integrar o card */
    .location__map-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(26,35,50,0.82) 0%, rgba(26,35,50,0.55) 38%, transparent 65%);
      pointer-events: none;
    }
    /* Card de informações sobreposto ao mapa */
    .location__card {
      position: absolute;
      top: 50%; left: 0;
      transform: translateY(-50%);
      z-index: 2;
      width: 380px;
      margin-left: calc((100vw - min(1200px, 100vw)) / 2 + 24px);
      padding: 0 24px;
    }
    .location__card-inner {
      background: rgba(255,255,255,0.97);
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      overflow: hidden;
    }
    .location__card-header {
      background: var(--azul); padding: 16px 22px;
      display: flex; align-items: center; gap: 12px;
    }
    .location__card-header-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(255,255,255,0.12); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .location__card-header-icon svg { width: 18px; height: 18px; }
    .location__card-header-title {
      font-family: var(--font-serif); font-size: 0.9rem;
      color: var(--branco); font-weight: 600; line-height: 1.3;
    }
    .location__card-header-sub { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
    .location__card-body { padding: 4px 0; }
    .location__item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 13px 22px;
      border-bottom: 1px solid rgba(73,80,95,0.07);
    }
    .location__item:last-child { border-bottom: none; }
    .location__item-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: var(--offwhite); border-radius: var(--radius-xs);
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .location__item-icon svg { width: 15px; height: 15px; }
    .location__label { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--verde-dark); margin-bottom: 3px; }
    .location__value { font-size: 0.83rem; color: var(--texto); font-weight: 500; line-height: 1.55; }
    .location__value a { color: var(--azul); }
    .location__value a:hover { color: var(--verde-dark); text-decoration: underline; }
    .location__card-cta {
      padding: 16px 22px;
      background: var(--offwhite);
      border-top: 1px solid var(--borda);
      display: flex; gap: 10px;
    }
    .location__card-cta .btn { flex: 1; justify-content: center; font-size: 0.8rem; padding: 10px 12px; }

    /* ─── FAQ NA HOME ───────────────────────────────────────── */
    .home-faq { background: var(--bege); }
    .home-faq__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .faq-item {
      background: var(--branco); border-radius: var(--radius-sm);
      border: 1px solid var(--borda); overflow: hidden;
    }
    .faq-item__q {
      padding: 18px 20px;
      font-size: 0.9rem; font-weight: 600; color: var(--azul);
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      list-style: none; user-select: none;
      min-height: 56px;
    }
    .faq-item__q::-webkit-details-marker { display: none; }
    .faq-item__q-icon {
      width: 24px; height: 24px; flex-shrink: 0;
      background: var(--offwhite); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--verde); font-weight: 400;
      transition: transform 0.2s, background 0.2s;
    }
    details[open] .faq-item__q-icon { transform: rotate(45deg); background: rgba(121,137,112,0.12); }
    .faq-item__a {
      padding: 14px 20px 18px;
      font-size: 0.875rem; color: var(--texto-suave); line-height: 1.75;
      border-top: 1px solid var(--borda);
    }
    .faq-item__a a {
      color: var(--verde-dark); font-weight: 600;
      text-decoration: underline; text-underline-offset: 3px;
    }
    .faq-item__a a:hover { color: var(--azul); }

    /* ─── CTA FINAL ─────────────────────────────────────────── */
    .cta-section {
      background: var(--azul); padding: 72px 0;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; right: -80px; bottom: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
      border-radius: 50%;
    }
    .cta-section__inner {
      text-align: center; max-width: 600px;
      margin: 0 auto; position: relative; z-index: 1;
    }
    .cta-section h2 { color: var(--branco); margin-bottom: 14px; }
    .cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1rem; }
    .cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn--ghost { background: transparent; color: var(--branco); border-color: rgba(255,255,255,0.4); }
    .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

    /* ─── WA FLOAT ──────────────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 998;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--trans);
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
    .wa-float svg { width: 28px; height: 28px; fill: var(--branco); }

    /* ─── MOBILE HYPER OTIMIZADO ────────────────────────────── */
    @media (max-width: 1024px) {
      .hero__inner { grid-template-columns: 1fr; }
      .hero__card { display: none; }
    }

    @media (max-width: 768px) {
      /* Seções */
      .section { padding: 52px 0; }

      /* Hero */
      .hero { padding: 36px 0 44px; }
      .hero h1 { font-size: clamp(1.75rem, 7vw, 2.2rem); letter-spacing: -0.02em; }
      .hero__subtitle { font-size: 0.95rem; margin-bottom: 22px; max-width: 100%; }
      .hero__chips { gap: 7px; }
      .hero__chip { font-size: 0.77rem; padding: 8px 12px; }
      .hero__actions { flex-direction: column; gap: 10px; }
      .hero__actions .btn {
        width: 100%; justify-content: center;
        padding: 16px 20px; font-size: 0.95rem;
      }

      /* Trust bar — scroll horizontal no mobile */
      .trust-bar { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .trust-bar__inner {
        flex-wrap: nowrap; justify-content: flex-start;
        padding: 16px 16px; gap: 0;
      }
      .trust-item { padding: 8px 20px; flex-shrink: 0; }
      .trust-divider { height: 28px; }

      /* Serviços — 2 colunas no mobile */
      .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .svc-card { padding: 20px 16px 16px; gap: 10px; }
      .svc-card__icon { width: 44px; height: 44px; border-radius: 10px; }
      .svc-card__icon svg { width: 24px; height: 24px; }
      .svc-card__title { font-size: 0.88rem; }
      .svc-card__badge { font-size: 0.6rem; padding: 2px 7px; }

      /* Como funciona — 1 coluna, sem linha conectora */
      .how__steps { grid-template-columns: 1fr; gap: 24px; }
      .how__steps::before { display: none; }
      .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
      .step__num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1.1rem; }
      .step-text { flex: 1; }
      .step h3 { margin-bottom: 6px; font-size: 0.95rem; }
      .step p { font-size: 0.875rem; }

      /* FAQ — 1 coluna no mobile */
      .home-faq__grid { grid-template-columns: 1fr; }
      .faq-item__q { font-size: 0.875rem; padding: 16px 16px; }
      .faq-item__a { padding: 12px 16px 16px; font-size: 0.85rem; }

      /* Localização mobile — card empilhado sobre mapa */
      .location__map-bg { height: 320px; }
      .location__map-bg::after {
        background: linear-gradient(180deg, rgba(26,35,50,0.75) 0%, rgba(26,35,50,0.45) 40%, transparent 70%);
      }
      .location__card {
        position: relative;
        transform: none;
        width: 100%;
        margin: 0;
        padding: 0 16px;
        margin-top: -80px;
        z-index: 3;
      }
      .location__card-inner {
        box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      }
      .location__card-cta { flex-direction: column; }

      /* CTA */
      .cta-section { padding: 52px 0; }
      .cta-section__actions { flex-direction: column; align-items: stretch; }
      .cta-section__actions .btn { width: 100%; justify-content: center; padding: 16px 20px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
      .hero__badge { font-size: 0.62rem; padding: 5px 11px; }
      .hero__chip { flex: 1; min-width: calc(50% - 4px); justify-content: center; }
      .services__grid { gap: 10px; }
      .svc-card { padding: 16px 14px 14px; }
      .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
      .wa-float svg { width: 24px; height: 24px; }
    }
