/* ==========================================================================
   VOLL STUDIOS — COMPONENTES
   Biblioteca fechada. As páginas COMPÕEM estes blocos; não criam novos
   nem sobrescrevem cor/raio/sombra fora dos tokens.
   ========================================================================== */

/* ==========================================================================
   1. BOTÕES
   ========================================================================== */
.btn {
  --btn-bg: var(--cta-bg);
  --btn-fg: var(--cta-fg);
  --btn-bd: transparent;
  --btn-sh: var(--sh-teal);
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  min-height: 52px;                        /* alvo de toque confortável     */
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  box-shadow: var(--btn-sh);
  font-size: var(--fs-body);
  font-weight: var(--fw-extra);
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
}
@media (hover: hover) {
  .btn:hover { transform: translateY(-3px); }
  .btn--primary:hover { --btn-bg: var(--cta-bg-hover); --btn-sh: var(--sh-teal-h); }
  .btn--dark:hover    { --btn-bg: var(--navy-600); }
  .btn--ghost:hover   { --btn-bg: var(--navy-500); --btn-fg: var(--white); --btn-bd: var(--navy-500); }
  .btn--onDark:hover  { --btn-bg: var(--white); --btn-fg: var(--navy-500); --btn-bd: var(--white); }
  .btn--whatsapp:hover{ --btn-bg: var(--whatsapp-dark); }
}
.btn:active { transform: translateY(-1px); }

.btn--primary  { --btn-bg: var(--cta-bg); --btn-fg: var(--cta-fg); }
.btn--dark     { --btn-bg: var(--navy-500); --btn-fg: var(--white); --btn-sh: var(--sh-md); }
.btn--ghost    { --btn-bg: transparent; --btn-fg: var(--navy-500); --btn-bd: var(--border-strong); --btn-sh: none; }
.btn--onDark   { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: var(--border-invert); --btn-sh: none; }
.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: var(--white); --btn-sh: 0 6px 18px rgba(24,136,66,.34); }

.btn--sm { padding: var(--sp-3) var(--sp-5); min-height: 44px; font-size: var(--fs-sm); }
.btn--lg { padding: var(--sp-5) var(--sp-10); min-height: 60px; font-size: var(--fs-lead); }
.btn--block { width: 100%; }

/* Seta circular do botão — assinatura herdada da v1                        */
.btn__arrow {
  width: 30px; height: 30px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  transition: transform var(--dur-base) var(--ease-out);
}
.btn--ghost .btn__arrow { background: var(--teal-100); color: var(--teal-600); }
@media (hover: hover) { .btn:hover .btn__arrow { transform: translateX(3px); } }
.btn__arrow svg { width: 15px; height: 15px; }

/* Link com seta — CTA terciário                                            */
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: var(--fw-extra); color: var(--accent-ink);
  border-bottom: 2px solid transparent;
  transition: gap var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.link-arrow svg { width: 16px; height: 16px; }
@media (hover: hover) { .link-arrow:hover { gap: var(--sp-3); border-bottom-color: currentColor; } }

/* ==========================================================================
   2. BADGES E SELOS
   ========================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: var(--fs-xs); font-weight: var(--fw-extra);
  letter-spacing: .02em; line-height: 1.4;
}
.badge svg { width: 14px; height: 14px; }
.badge--gold    { background: rgba(255,216,99,.28); color: #7A5B00; }
.badge--onDark  { background: rgba(255,255,255,.12); color: var(--teal-300); }
.badge--outline { background: transparent; border: 1px solid var(--border-strong); color: var(--ink-soft); }

/* ==========================================================================
   3. ÍCONES
   ========================================================================== */
.icon-circle {
  width: 60px; height: 60px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.icon-circle svg { width: 26px; height: 26px; stroke-width: 1.8; }
.icon-circle--solid { background: var(--teal-400); color: var(--navy-600); box-shadow: var(--sh-teal); }
.icon-circle--sm { width: 44px; height: 44px; } .icon-circle--sm svg { width: 20px; height: 20px; }
.icon-circle--lg { width: 78px; height: 78px; } .icon-circle--lg svg { width: 34px; height: 34px; }

/* ==========================================================================
   4. CARDS
   ========================================================================== */
.card {
  background: var(--surface-raised);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.card > h3, .card > h4 { color: var(--navy-500); }
.card > p { color: var(--ink-soft); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }
.card--flat  { box-shadow: none; background: var(--accent-soft); border-color: transparent; }
.card--onDark{ background: rgba(255,255,255,.05); border-color: var(--border-invert); box-shadow: none; }
.card--onDark > h3, .card--onDark > h4 { color: var(--ink-invert); }
.card--onDark > p { color: var(--ink-invert-soft); }

/* Fio superior de acento */
.card--topline { border-top: 4px solid var(--accent); }

/* Card de serviço — usado na home e no cross-sell das páginas internas     */
.card-service {
  position: relative; overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.card-service__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-sunken); }
.card-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.card-service__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18,40,64,.55) 100%);
}
.card-service__body { padding: var(--sp-6) var(--sp-6) var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.card-service__icon {
  position: absolute; left: var(--sp-6); bottom: calc(-1 * var(--sp-5)); z-index: var(--z-base);
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: var(--r-sm); background: var(--surface-raised);
  color: var(--card-accent, var(--accent)); box-shadow: var(--sh-md);
}
.card-service__icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.card-service__body > h3 { margin-top: var(--sp-4); font-size: var(--fs-h3); color: var(--navy-500); }
.card-service__body > p  { color: var(--ink-soft); font-size: var(--fs-sm); flex: 1; }
.card-service__link { margin-top: var(--sp-2); color: var(--card-accent, var(--accent-ink)); }
.card-service::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 4px;
  background: var(--card-accent, var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
@media (hover: hover) {
  .card-service:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
  .card-service:hover::after { transform: scaleX(1); }
  .card-service:hover .card-service__media img { transform: scale(1.06); }
}
/* Card inteiro clicável, mantendo um único link real para leitores de tela */
.card-service__stretch::before { content: ''; position: absolute; inset: 0; z-index: 2; }

/* Card de etapa numerada — "como funciona"                                 */
.card-step { position: relative; padding-top: var(--sp-12); }
.card-step__num {
  position: absolute; top: calc(-1 * var(--sp-5)); left: var(--sp-8);
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: var(--teal-400); color: var(--navy-600);
  font-size: var(--fs-h4); font-weight: var(--fw-black);
  box-shadow: var(--sh-teal); border: 4px solid var(--surface);
}
.card-step--center { text-align: center; align-items: center; }
.card-step--center .card-step__num { left: 50%; transform: translateX(-50%); }

/* Card de profissional                                                     */
.card-pro { padding: 0; overflow: hidden; }
.card-pro__photo { aspect-ratio: 4/5; background: var(--surface-sunken); }
.card-pro__photo img { width: 100%; height: 100%; object-fit: cover; }
.card-pro__body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.card-pro__role { font-size: var(--fs-xs); font-weight: var(--fw-extra); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--accent-ink); }
.card-pro__reg  { font-size: var(--fs-xs); color: var(--ink-faint); }

/* Estatística em destaque                                                  */
.stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat__num { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); font-weight: var(--fw-black); line-height: 1; color: var(--teal-500); letter-spacing: var(--ls-tight); }
.stat__label { font-size: var(--fs-sm); color: var(--ink-soft); line-height: var(--lh-base); }
.bg-navy .stat__num, .bg-darker .stat__num { color: var(--teal-300); }
.bg-navy .stat__label, .bg-darker .stat__label { color: var(--ink-invert-soft); }
.stat--center { text-align: center; align-items: center; }

/* ==========================================================================
   5. MOLDURAS DE MÍDIA
   ========================================================================== */
.media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: var(--surface-sunken); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--circle { border-radius: 50%; aspect-ratio: 1; }
.media--tall   { aspect-ratio: 4/5; }
.media--wide   { aspect-ratio: 16/10; }
.media--square { aspect-ratio: 1; }
.media--blob   { border-radius: 58% 42% 46% 54% / 52% 48% 52% 48%; aspect-ratio: 1; }

/* Selo sobreposto à mídia — "+200 unidades", "5,0 no Google", etc.         */
.media-tag {
  position: absolute; z-index: var(--z-base);
  background: var(--surface-raised);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: var(--sp-3);
  max-width: min(80%, 280px);
}
.media-tag--bl { left: var(--sp-4);  bottom: var(--sp-4); }
.media-tag--br { right: var(--sp-4); bottom: var(--sp-4); }
.media-tag--tr { right: var(--sp-4); top: var(--sp-4); }
.media-tag strong { display: block; font-size: var(--fs-h4); color: var(--navy-500); line-height: 1.2; }
.media-tag span   { display: block; font-size: var(--fs-xs); color: var(--ink-soft); }

/* Vídeo com play                                                           */
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: var(--navy-600); box-shadow: var(--sh-lg); display: grid; place-items: center; }
.video-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .68; }
.video-frame__play {
  position: relative; z-index: var(--z-base);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--teal-500);
  display: grid; place-items: center;
  transition: transform var(--dur-base) var(--ease-spring);
}
.video-frame__play svg { width: 30px; height: 30px; fill: currentColor; margin-left: 4px; }
@media (hover: hover) { .video-frame:hover .video-frame__play { transform: scale(1.12); background: var(--white); } }

/* ==========================================================================
   6. LISTAS
   ========================================================================== */
.feature-list { display: flex; flex-direction: column; }
.feature-list li {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--border);
  font-weight: var(--fw-bold); color: var(--ink);
  line-height: var(--lh-base);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: ''; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321705C' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 15px; background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}
.feature-list li small { display: block; font-weight: var(--fw-regular); font-size: var(--fs-sm); color: var(--ink-soft); margin-top: 2px; }

/* Lista de sintomas / dores — marcador em ponto                            */
.dot-list li { display: flex; align-items: flex-start; gap: var(--sp-4); padding-block: var(--sp-3); font-weight: var(--fw-bold); line-height: var(--lh-base); }
.dot-list li::before {
  content: ''; flex-shrink: 0; width: 9px; height: 9px; margin-top: .55em;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
}
.bg-navy .dot-list li, .bg-darker .dot-list li { color: var(--ink-invert); }
.bg-navy .feature-list li { color: var(--ink-invert); border-color: var(--border-invert); }

/* ==========================================================================
   7. CABEÇALHO E NAVEGAÇÃO
   ========================================================================== */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-stuck {
  background: color-mix(in srgb, var(--white) 94%, transparent);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5);
}
.site-logo { flex-shrink: 0; display: block; }
.site-logo img { height: 38px; width: auto; }

/* --- navegação desktop --- */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--navy-500);
  white-space: nowrap;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__link svg { width: 13px; height: 13px; transition: transform var(--dur-base) var(--ease-out); }
@media (hover: hover) { .nav__link:hover { color: var(--teal-600); background: var(--teal-100); } }
.nav__link[aria-current="page"] { color: var(--teal-600); }
.nav__link[aria-current="page"]::after {
  content: ''; position: absolute; left: var(--sp-4); right: var(--sp-4); bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--teal-400);
}
.nav__item--has-menu[data-open="true"] .nav__link svg { transform: rotate(180deg); }

/* --- mega menu de serviços (desktop) --- */
.mega {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: min(760px, calc(100vw - var(--sp-8)));
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: var(--sp-5);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base);
}
.nav__item--has-menu { position: relative; }
.nav__item--has-menu[data-open="true"] .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega__item {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
@media (hover: hover) { .mega__item:hover { background: var(--surface); } }
.mega__icon {
  width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: var(--r-xs);
  background: var(--mega-soft, var(--teal-100));
  color: var(--mega-ink, var(--teal-600));
}
.mega__icon svg { width: 21px; height: 21px; stroke-width: 1.8; }
.mega__title { display: block; font-size: var(--fs-sm); font-weight: var(--fw-extra); color: var(--navy-500); line-height: 1.35; }
.mega__desc  { display: block; font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.45; margin-top: 2px; }

/* --- ações do cabeçalho --- */
.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-actions .btn { display: none; }

/* --- botão hambúrguer --- */
.nav-toggle {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: var(--r-sm); color: var(--navy-500);
  transition: background var(--dur-fast);
}
@media (hover: hover) { .nav-toggle:hover { background: var(--teal-100); } }
.nav-toggle__bars { display: block; width: 22px; height: 16px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 2px;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars span:nth-child(3) { bottom: 0; }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

/* --- gaveta mobile --- */
.nav-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(18,40,64,.5);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: var(--z-drawer);
  width: min(400px, 88vw);
  background: var(--surface-raised);
  box-shadow: var(--sh-xl);
  display: flex; flex-direction: column;
  transform: translateX(101%);
  transition: transform var(--dur-slow) var(--ease-inout);
  overscroll-behavior: contain;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  min-height: var(--header-h-sm);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-drawer__head img { height: 32px; width: auto; }
.nav-drawer__close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-sm); color: var(--navy-500); }
.nav-drawer__close svg { width: 22px; height: 22px; }
.nav-drawer__body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-5) var(--sp-8); -webkit-overflow-scrolling: touch; }
.nav-drawer__foot { padding: var(--sp-5); border-top: 1px solid var(--border); background: var(--surface); flex-shrink: 0; }

.drawer-link {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-2);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-lead); font-weight: var(--fw-extra); color: var(--navy-500);
  min-height: 56px;
}
.drawer-link[aria-current="page"] { color: var(--teal-600); }
.drawer-link svg { width: 18px; height: 18px; color: var(--ink-faint); transition: transform var(--dur-base) var(--ease-out); }
.drawer-group[data-open="true"] > .drawer-link svg { transform: rotate(180deg); }
.drawer-sub {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-inout);
}
.drawer-group[data-open="true"] .drawer-sub { grid-template-rows: 1fr; }
.drawer-sub__inner { overflow: hidden; }
.drawer-sub a {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-2) var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--ink-soft);
  min-height: 48px;
}
.drawer-sub a[aria-current="page"] { color: var(--teal-600); }
.drawer-sub a::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sub-accent, var(--teal-400)); flex-shrink: 0;
}

@media (min-width: 1080px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
}

/* ==========================================================================
   8. TRILHA DE NAVEGAÇÃO
   ========================================================================== */
.breadcrumb { font-size: var(--fs-xs); color: var(--ink-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); list-style: none; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumb li + li::before { content: '/'; color: var(--ink-faint); }
.breadcrumb a { font-weight: var(--fw-bold); }
@media (hover: hover) { .breadcrumb a:hover { color: var(--accent-ink); text-decoration: underline; } }
.breadcrumb [aria-current="page"] { color: var(--ink-faint); }

/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding-block: calc(var(--header-h) + var(--sp-12)) var(--section-y); background: var(--surface); }

/* Auréola de cor por trás do hero — respira sem pesar                      */
.hero__glow {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(70px);
}
.hero__glow--a { width: min(46vw, 520px); aspect-ratio: 1; top: -14%; right: -8%; background: color-mix(in srgb, var(--accent) 30%, transparent); opacity: .5; }
.hero__glow--b { width: min(34vw, 400px); aspect-ratio: 1; bottom: -18%; left: -10%; background: color-mix(in srgb, var(--teal-300) 40%, transparent); opacity: .42; }

/* Arcos concêntricos — a "mandala" da v1, redesenhada                      */
.hero__arcs { position: absolute; pointer-events: none; z-index: 0; opacity: .5; color: var(--teal-500); }
.hero__arcs--left  { left: -140px; top: 50%; translate: 0 -50%; width: min(46vw, 420px); }
.hero__arcs--right { right: -90px; top: -70px; width: min(34vw, 320px); }

.hero__inner { position: relative; z-index: var(--z-base); }
.hero__content { display: grid; gap: var(--sp-10); align-items: center; grid-template-columns: 1fr; }
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
.hero__copy > .lead { max-width: var(--measure-tight); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); width: 100%; }

/* Prova social logo abaixo do CTA — reduz atrito de decisão                */
.hero__proof { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-2); }
.hero__proof-stars { color: var(--star); font-size: var(--fs-body); letter-spacing: 2px; }
.hero__proof-text { font-size: var(--fs-sm); color: var(--ink-soft); }
.hero__proof-text strong { color: var(--navy-500); font-weight: var(--fw-extra); }

/* Mídia do hero */
.hero__media { position: relative; justify-self: center; width: 100%; max-width: 520px; }
.hero__media-ring {
  position: absolute; inset: -3%; border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--accent) 40%, transparent);
  animation: spin-slow 60s linear infinite;
}
.hero__media-shape {
  position: relative; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: linear-gradient(160deg, var(--teal-400), var(--teal-500));
  box-shadow: var(--sh-xl);
}
.hero__media-shape img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }

/* Faixa de indicadores sob o hero */
.hero__bar {
  margin-top: var(--sp-14);
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  padding: var(--sp-6) var(--sp-8);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}

@media (min-width: 900px) {
  .hero__content { grid-template-columns: 1.06fr .94fr; gap: var(--sp-16); }
  .hero__actions { width: auto; }
}
@media (min-width: 1280px) {
  .hero { padding-block: calc(var(--header-h) + var(--sp-16)) var(--section-y); }
}

/* --- hero de página interna --- */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: calc(var(--header-h) + var(--sp-10)) var(--sp-16);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 100%);
}
.page-hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(52vw, 560px); aspect-ratio: 1; border-radius: 50%; filter: blur(80px);
  background: color-mix(in srgb, var(--accent) 26%, transparent);
  top: -30%; right: -10%; opacity: .55;
}
.page-hero__inner { position: relative; z-index: var(--z-base); display: grid; gap: var(--sp-10); align-items: center; grid-template-columns: 1fr; }
.page-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
.page-hero__copy .breadcrumb { margin-bottom: var(--sp-2); }
.page-hero__media { position: relative; width: 100%; max-width: 560px; justify-self: center; }
@media (min-width: 900px) {
  .page-hero__inner { grid-template-columns: 1.08fr .92fr; gap: var(--sp-14); }
  .page-hero { padding-block: calc(var(--header-h) + var(--sp-14)) var(--sp-20); }
}

@keyframes spin-slow { to { rotate: 360deg; } }

/* ==========================================================================
   10. NAVEGAÇÃO POR CHIPS (atalho entre serviços)
   ========================================================================== */
.chip-nav { display: flex; gap: var(--sp-3); overflow-x: auto; padding-block: var(--sp-2); scrollbar-width: none; scroll-snap-type: x proximity; }
.chip-nav::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; scroll-snap-align: start;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5); min-height: 46px;
  border-radius: var(--r-pill);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--navy-500);
  white-space: nowrap;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.chip svg { width: 17px; height: 17px; color: var(--chip-accent, var(--accent)); }
@media (hover: hover) { .chip:hover { border-color: var(--chip-accent, var(--accent)); background: var(--accent-soft); } }
.chip[aria-current="page"] { background: var(--navy-500); color: var(--white); border-color: var(--navy-500); }
.chip[aria-current="page"] svg { color: var(--teal-300); }

/* ==========================================================================
   11. FAQ (acordeão acessível — <button> + aria-expanded)
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--surface-raised); overflow: hidden; transition: border-color var(--dur-fast), background var(--dur-fast); }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); min-height: 64px;
  text-align: left; font-size: var(--fs-body); font-weight: var(--fw-bold); color: var(--navy-500);
  line-height: var(--lh-base);
}
.faq-item__icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; color: var(--accent-ink); }
.faq-item__icon::before, .faq-item__icon::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  background: currentColor; border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-fast);
}
.faq-item__icon::before { width: 100%; height: 2.5px; }
.faq-item__icon::after  { width: 2.5px; height: 100%; }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-inout); }
.faq-item__trigger[aria-expanded="true"] + .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel > div { overflow: hidden; }
.faq-item__panel p { padding: 0 var(--sp-6) var(--sp-6); color: var(--ink-soft); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }
.faq-item__panel p + p { padding-top: 0; }
@media (hover: hover) { .faq-item:hover { border-color: var(--border-strong); } }

/* Variante sobre fundo escuro */
.bg-navy .faq-item, .bg-darker .faq-item { background: rgba(255,255,255,.05); border-color: var(--border-invert); }
.bg-navy .faq-item__trigger, .bg-darker .faq-item__trigger { color: var(--ink-invert); }
.bg-navy .faq-item__icon, .bg-darker .faq-item__icon { color: var(--teal-300); }
.bg-navy .faq-item__panel p, .bg-darker .faq-item__panel p { color: var(--ink-invert-soft); }

/* ==========================================================================
   12. CARROSSEL (depoimentos) — scroll-snap nativo, swipe grátis no touch
   ========================================================================== */
.carousel { position: relative; }
.carousel__viewport {
  display: flex; gap: var(--sp-6);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
  padding-block: var(--sp-2) var(--sp-4);
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  overscroll-behavior-x: contain;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 min(100%, 380px); scroll-snap-align: start; display: flex; }
.carousel__slide > * { width: 100%; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-6); }
.carousel-btn {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--surface-raised); color: var(--teal-600);
  border: 1px solid var(--border); box-shadow: var(--sh-sm);
  transition: background var(--dur-fast), color var(--dur-fast), opacity var(--dur-fast);
}
.carousel-btn svg { width: 21px; height: 21px; }
.carousel-btn[disabled] { opacity: .35; cursor: default; }
@media (hover: hover) { .carousel-btn:not([disabled]):hover { background: var(--teal-400); color: var(--white); border-color: var(--teal-400); } }
.carousel__dots { display: flex; gap: var(--sp-2); }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); transition: width var(--dur-base) var(--ease-out), background var(--dur-base); }
.carousel__dot[aria-current="true"] { width: 26px; border-radius: var(--r-pill); background: var(--teal-400); }
@media (min-width: 700px) { .carousel__slide { flex-basis: calc((100% - var(--sp-6)) / 2); } }
@media (min-width: 1024px) { .carousel__slide { flex-basis: calc((100% - var(--sp-6) * 2) / 3); } }

/* Cartão de depoimento */
.review { border-top: 4px solid var(--star); gap: var(--sp-4); height: 100%; }
.review__stars { color: var(--star); font-size: var(--fs-body); letter-spacing: 2px; }
.review__text { font-size: var(--fs-sm); color: var(--ink-soft); line-height: var(--lh-relaxed); flex: 1; }
.review__author { display: flex; align-items: center; gap: var(--sp-3); padding-top: var(--sp-4); border-top: 1px solid var(--border); }
.review__avatar { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-600); font-weight: var(--fw-black); }
.review__name { display: block; font-size: var(--fs-sm); font-weight: var(--fw-extra); color: var(--navy-500); line-height: 1.3; }
.review__meta { display: block; font-size: var(--fs-xs); color: var(--ink-faint); }

/* Selo do Google */
.google-badge {
  display: inline-flex; align-items: center; gap: var(--sp-5);
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6); box-shadow: var(--sh-md);
}
.google-badge__score { font-size: var(--fs-h3); font-weight: var(--fw-black); color: var(--navy-500); line-height: 1; }
.google-badge__stars { color: var(--star); letter-spacing: 2px; }
.google-badge__label { font-size: var(--fs-xs); color: var(--ink-soft); margin-top: 2px; }
.google-badge img { width: 72px; height: auto; }

/* ==========================================================================
   13. FAIXA DE CONVERSÃO
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-400) 100%);
  color: var(--ink-invert);
  padding-block: var(--section-y);
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band__inner { position: relative; z-index: var(--z-base); display: flex; flex-direction: column; align-items: center; gap: var(--sp-6); }
.cta-band h2, .cta-band h3 { color: var(--ink-invert); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; }
.cta-band .btn--primary { --btn-bg: var(--white); --btn-fg: var(--teal-600); --btn-sh: var(--sh-lg); }
.cta-band .btn--primary .btn__arrow { background: var(--teal-100); }
@media (hover: hover) { .cta-band .btn--primary:hover { --btn-bg: var(--navy-500); --btn-fg: var(--white); } }
@media (hover: hover) { .cta-band .btn--primary:hover .btn__arrow { background: rgba(255,255,255,.2); } }
.cta-band .btn__arrow { background: color-mix(in srgb, var(--teal-500) 16%, transparent); }

/* Banner manuscrito — a "voz" da marca */
.quote-banner {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-400) 100%);
  padding: var(--section-y-sm) var(--gutter);
}
.quote-banner p {
  position: relative; z-index: var(--z-base);
  font-family: var(--font-script); font-weight: var(--fw-bold);
  font-size: var(--fs-quote); line-height: 1.28; color: var(--white);
  max-width: 20ch; margin-inline: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.16);
}

/* ==========================================================================
   14. DESTAQUE / AVISO
   ========================================================================== */
.callout {
  display: flex; align-items: flex-start; gap: var(--sp-5);
  background: var(--surface-raised);
  border-radius: var(--r-md);
  border-left: 5px solid var(--accent);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--sh-md);
}
.callout h3, .callout h4 { color: var(--navy-500); margin-bottom: var(--sp-2); }
.callout p { color: var(--ink-soft); font-size: var(--fs-sm); }
@media (max-width: 640px) {
  .callout { flex-direction: column; border-left: 0; border-top: 5px solid var(--accent); padding: var(--sp-6); }
}

/* ==========================================================================
   15. FORMULÁRIO
   ========================================================================== */
.form { display: grid; gap: var(--sp-5); }
.form__row { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field > label { font-size: var(--fs-sm); font-weight: var(--fw-extra); color: var(--navy-500); }
.field > label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--sp-4) var(--sp-5); min-height: 52px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--surface-raised); color: var(--ink);
  font-size: var(--fs-body);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { min-height: 132px; resize: vertical; line-height: var(--lh-relaxed); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-400);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal-400) 22%, transparent);
}
.field__hint  { font-size: var(--fs-xs); color: var(--ink-faint); }
.field__error { font-size: var(--fs-xs); color: var(--danger); font-weight: var(--fw-bold); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field__error { display: block; }
.field--check { flex-direction: row; align-items: flex-start; gap: var(--sp-3); }
.field--check input { width: 20px; height: 20px; min-height: 0; flex-shrink: 0; margin-top: 3px; accent-color: var(--teal-500); }
.field--check label { font-weight: var(--fw-regular); font-size: var(--fs-sm); color: var(--ink-soft); line-height: var(--lh-base); }
.form__status { font-size: var(--fs-sm); font-weight: var(--fw-bold); }

/* ==========================================================================
   16. MAPA E CARTÕES DE INFORMAÇÃO
   ========================================================================== */
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 16/9; background: var(--surface-sunken); }
.map-frame iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) { .map-frame { aspect-ratio: 4/3; } }

.info-card { text-align: left; gap: var(--sp-3); }
.info-card__label { font-size: var(--fs-xs); font-weight: var(--fw-extra); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--accent-ink); }
.info-card p { color: var(--ink-soft); font-size: var(--fs-sm); }
.info-card a { font-weight: var(--fw-bold); color: var(--navy-500); }
@media (hover: hover) { .info-card a:hover { color: var(--teal-600); text-decoration: underline; } }

/* ==========================================================================
   17. RODAPÉ
   ========================================================================== */
.site-footer { background: var(--surface-darker); color: var(--ink-invert-soft); padding-block: var(--sp-20) var(--sp-8); }
.site-footer__grid { display: grid; gap: var(--sp-10); grid-template-columns: 1fr; }
@media (min-width: 720px)  { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-12); } }
.site-footer__col { display: flex; flex-direction: column; }
.site-footer__brand img { height: 52px; width: auto; margin-bottom: var(--sp-5); }
.site-footer p { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--ink-invert-soft); }
.site-footer h3 { font-size: var(--fs-h4); color: var(--ink-invert); margin-bottom: var(--sp-5); font-weight: var(--fw-extra); }
.site-footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__links a { font-size: var(--fs-sm); color: var(--ink-invert-soft); transition: color var(--dur-fast), transform var(--dur-fast); display: inline-block; }
@media (hover: hover) { .site-footer__links a:hover { color: var(--teal-300); transform: translateX(4px); } }
.site-footer__contact { display: flex; flex-direction: column; gap: var(--sp-4); }
.site-footer__contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); }
.site-footer__contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--teal-300); }
.site-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.site-socials a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.07);
  color: var(--ink-invert-soft);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.site-socials svg { width: 20px; height: 20px; }
@media (hover: hover) { .site-socials a:hover { background: var(--teal-400); color: var(--white); transform: translateY(-3px); } }
.site-footer__bottom { margin-top: var(--sp-16); padding-top: var(--sp-8); border-top: 1px solid var(--border-invert); display: flex; flex-direction: column; gap: var(--sp-4); }
.site-footer__bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,.5); line-height: 1.6; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.site-footer__legal a { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
@media (hover: hover) { .site-footer__legal a:hover { color: var(--teal-300); } }

/* ==========================================================================
   18. WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
  position: fixed; right: var(--sp-5); bottom: var(--sp-5); z-index: var(--z-float);
  display: inline-flex; align-items: center; gap: var(--sp-3);
  height: 60px; padding: 0 var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--whatsapp); color: var(--white);
  box-shadow: 0 8px 24px rgba(24,136,66,.42);
  font-weight: var(--fw-extra); font-size: var(--fs-sm);
  transition: transform var(--dur-base) var(--ease-spring), background var(--dur-base);
}
.wa-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.wa-float__label { display: none; padding-right: var(--sp-2); }
@media (hover: hover) { .wa-float:hover { background: var(--whatsapp-dark); transform: scale(1.05); } }
@media (min-width: 1080px) { .wa-float__label { display: block; } }
@media (max-width: 480px) { .wa-float { width: 58px; height: 58px; padding: 0; justify-content: center; right: var(--sp-4); bottom: var(--sp-4); } }

/* Barra de ação fixa no mobile — o CTA nunca sai da tela                   */
.action-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; gap: var(--sp-3);
  padding: var(--sp-3) var(--gutter) calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--white) 96%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(18,40,64,.08);
}
.action-bar .btn { flex: 1; min-height: 50px; font-size: var(--fs-sm); padding-inline: var(--sp-4); }
@media (max-width: 700px) {
  .action-bar { display: flex; }
  body { padding-bottom: 78px; }
  .wa-float { bottom: 90px; }
}
