/* ========================================================
   WS Motores — Styles
   Mobile-first · Dark premium · Red accents
   Stack: HTML + CSS + JS mínimo (sem frameworks)
   ======================================================== */

/* ─────────────────────────────────────────────────────────
   0. DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
  /* Cores */
  --ink:        #0B0B0D;
  --surface:    #141418;
  --surface-2:  #1C1C22;
  --line:       rgba(255, 255, 255, .08);
  --text:       #F4F4F5;
  --muted:      #9A9AA2;
  --red:        #E11414;
  --red-deep:   #B30F0F;
  --wa:         #25D366;
  --wa-deep:    #1eba56;

  /* Tipografia */
  --ff-display: 'Oswald', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Tamanhos fluidos */
  --fs-hero:  clamp(2.5rem, 9vw, 5rem);
  --fs-h2:    clamp(1.75rem, 5vw, 3rem);
  --fs-h3:    clamp(1.125rem, 2.5vw, 1.5rem);
  --fs-body:  1rem;
  --fs-small: 0.875rem;
  --fs-xs:    0.75rem;
  --fs-eyebrow: clamp(0.75rem, 1.5vw, 0.875rem);

  /* Espaçamento (escala 4/8) */
  --sp-4:  4px;
  --sp-8:  8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-96: 96px;

  /* Raios */
  --r-btn:  8px;
  --r-card: 12px;
  --r-pill: 999px;

  /* Sombras */
  --shadow-card:     0 2px 12px rgba(0, 0, 0, .3);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, .5);
  --glow-red:        0 0 40px rgba(225, 20, 20, .25),
                     0 0 80px rgba(225, 20, 20, .1);

  /* Transições */
  --ease:   cubic-bezier(.4, 0, .2, 1);
  --t-fast: 200ms;
  --t-mid:  400ms;
  --t-slow: 700ms;

  /* Layout */
  --container: 1200px;
  --gutter:    20px;

  /* Header */
  --header-h: 64px;
}

/* ─────────────────────────────────────────────────────────
   0.1 TEMA CLARO (LIGHT MODE)
   ───────────────────────────────────────────────────────── */
html.theme-light {
  --ink:        #F4F4F5;
  --surface:    #FFFFFF;
  --surface-2:  #E5E5EA;
  --line:       rgba(0, 0, 0, .08);
  --text:       #0B0B0D;
  --muted:      #55555C;
  /* Red e WA continuam os mesmos */
}

/* Força hero, soluções e footer a continuarem dark mesmo no modo claro */
html.theme-light .site-header,
html.theme-light .hero,
html.theme-light .section--solucoes,
html.theme-light .section--localizacao,
html.theme-light .section--domicilio,
html.theme-light .site-footer {
  --ink:        #0B0B0D;
  --surface:    #141418;
  --surface-2:  #1C1C22;
  --line:       rgba(255, 255, 255, .08);
  --text:       #F4F4F5;
  --muted:      #9A9AA2;
  color: var(--text);
  background: var(--ink);
}

/* Modal e Dropdowns no modo claro */
html.theme-light .modal__dialog,
html.theme-light .mobile-menu {
  background: var(--surface);
  color: var(--text);
}
html.theme-light .modal__backdrop {
  background: rgba(11, 11, 13, 0.6);
}
html.theme-light .skip-link {
  color: #fff;
}


/* ─────────────────────────────────────────────────────────
   1. RESET & BASE
   ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  overflow-x: clip;            /* previne scroll horizontal sem quebrar sticky */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }

[hidden] {
  display: none !important;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}


/* ─────────────────────────────────────────────────────────
   2. UTILITIES
   ───────────────────────────────────────────────────────── */

/* Só para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--gutter);
  z-index: 9999;
  padding: var(--sp-12) var(--sp-24);
  background: var(--red);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-btn) var(--r-btn);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* Body lock (JS: menu mobile / modal aberto) */
.no-scroll {
  overflow: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Texto vermelho */
.text-red { color: var(--red); }

/* Eyebrow (rótulo superior) */
.eyebrow {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-16);
}

/* Hero eyebrow — ligeiramente menor que os de seção */
.hero .eyebrow {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.22em;
  font-weight: 600;
}

/* Ícones inline SVG */
.ico {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────
   3. BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-24);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  min-height: 48px;            /* alvo de toque ≥ 44px */
  border: 1px solid transparent;
  text-decoration: none;
}

/* Primário (vermelho) */
.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(225, 20, 20, .35);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost (transparente com borda sutil) */
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
}

/* Outline (para cards de pacote) */
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--red);
  color: var(--red);
  background: rgba(225, 20, 20, .06);
}

/* WhatsApp */
.btn--wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn--wa:hover,
.btn--wa:focus-visible {
  background: var(--wa-deep);
  border-color: var(--wa-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}
.btn--wa:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Focus ring global para botões (keyboard) */
.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}


/* ─────────────────────────────────────────────────────────
   4. HEADER
   ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}

/* Estado: header rolado → mais opaco */
.site-header.is-scrolled {
  background: rgba(11, 11, 13, .96);
  box-shadow: 0 1px 32px rgba(0, 0, 0, .5);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-16);
}

/* Brand (logo + nome) */
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-shrink: 0;
}
.brand__mark {
  width: 40px;
  height: auto;
}
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.brand__name-accent {
  color: var(--muted);
  font-weight: 400;
}

/* Nav desktop — oculto até lg */
.nav {
  display: none;
  margin-left: auto;
}
.nav__list {
  display: flex;
  gap: var(--sp-32);
}
.nav__link {
  font-family: var(--ff-display);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--t-mid) var(--ease);
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

/* Actions no header (Toggle Tema + CTA) */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin-left: auto;
}

/* CTA no header — oculto até lg */
.header__cta {
  display: none;
  padding: var(--sp-8) var(--sp-16);
  font-size: var(--fs-xs);
  min-height: 40px;
}

/* Hamburger (toggle) */
.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease),
              opacity var(--t-fast) var(--ease);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
}
.nav-toggle__bars::before { transform: translateY(-7px); }
.nav-toggle__bars::after  { transform: translateY(7px); }

/* Hamburger → X */
.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: rotate(-45deg);
}

/* Menu mobile (full-screen overlay) */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: rgba(11, 11, 13, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: var(--sp-48) var(--gutter) var(--sp-32);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease);
  pointer-events: none;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.mobile-menu__list a {
  display: block;
  padding: var(--sp-16) 0;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color var(--t-fast) var(--ease),
              padding-left var(--t-fast) var(--ease);
}
.mobile-menu__list a:hover,
.mobile-menu__list a:focus-visible {
  color: var(--text);
  padding-left: var(--sp-8);
}
.mobile-menu__cta {
  margin-top: auto;
  width: 100%;
}


/* ─────────────────────────────────────────────────────────
   5. HERO
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--sp-48)) 0 var(--sp-64);
}

/* Fundo decorativo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  pointer-events: none;
}
.hero__art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 960px;
  opacity: .04;
  pointer-events: none;
  filter: blur(0.5px);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 13, .5)  0%,
    rgba(11, 11, 13, .8)  50%,
    var(--ink)             100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-24);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--sp-32);
}

/* Hero eyebrow — já definido acima com override global */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-bottom: var(--sp-48);
}

/* Trust badges */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-24);
  font-size: var(--fs-small);
  color: var(--muted);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.hero__trust li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Scroll indicator (chevron animado) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateX(-50%) rotate(45deg);
  opacity: .35;
  z-index: 1;
  animation: hero-scroll 2.5s ease-in-out infinite;
}

@keyframes hero-scroll {
  0%, 100% { opacity: .3; transform: translateX(-50%) rotate(45deg) translateY(0); }
  50%      { opacity: .6; transform: translateX(-50%) rotate(45deg) translateY(8px); }
}


/* ─────────────────────────────────────────────────────────
   6. SECTIONS (base)
   ───────────────────────────────────────────────────────── */
.section {
  padding: var(--sp-96) 0;
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-64);
}

.section__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section__lead {
  margin-top: var(--sp-16);
  color: var(--muted);
  font-size: clamp(0.938rem, 2vw, 1.0625rem);
  line-height: 1.7;
}

/* Fundos alternados */
.section--oficina  { background: var(--surface); }
.section--solucoes {
  background: linear-gradient(rgba(11, 11, 13, .95), rgba(11, 11, 13, .95)), url('../assets/abstract-bg.png') center/cover no-repeat;
  color: var(--text);
}
/* Força títulos e subtextos brancos na seção escura */
.section--solucoes .section__title {
  color: #F4F4F5;
}
.section--solucoes .section__lead {
  color: rgba(244, 244, 245, 0.65);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.section--pacotes  { background: var(--surface); }


/* ─────────────────────────────────────────────────────────
   7. CARDS — Features (Oficina)
   ───────────────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: var(--sp-16);
}

.cards--features {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-32) var(--sp-24);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
/* Linha vermelha accent no topo (aparece no hover) */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform var(--t-mid) var(--ease);
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-card);
}

.card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-8);
}

.card__text {
  color: var(--muted);
  font-size: clamp(0.938rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
}


/* ─────────────────────────────────────────────────────────
   8. CARDS — Problems (Soluções)
   ───────────────────────────────────────────────────────── */
.cards--problems {
  grid-template-columns: 1fr;
}

.card--problem {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
/* Equaliza a altura dos títulos para alinhar cards do grid */
.card--problem .card__title {
  min-height: 2.8em;
  display: flex;
  align-items: flex-start;
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(225, 20, 20, .08);
  border: 1px solid rgba(225, 20, 20, .15);
  border-radius: var(--r-btn);
  color: var(--red);
  flex-shrink: 0;
  transition: background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.card--problem:hover .card__icon {
  background: rgba(225, 20, 20, .15);
  border-color: rgba(225, 20, 20, .3);
}


/* ─────────────────────────────────────────────────────────
   9. CARDS — Pricing (Pacotes)
   ───────────────────────────────────────────────────────── */
.cards--pricing {
  grid-template-columns: 1fr;
  gap: var(--sp-24);
}

.price-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-32) var(--sp-24);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ★ DESTAQUE — Revisão Premium */
.price-card--featured {
  border-color: var(--red);
  background: linear-gradient(
    180deg,
    rgba(225, 20, 20, .07) 0%,
    var(--surface-2)        40%
  );
  box-shadow: var(--glow-red);
}
.price-card--featured:hover {
  box-shadow: 0 0 48px rgba(225, 20, 20, .3),
              0 0 96px rgba(225, 20, 20, .12);
  transform: translateY(-6px);
  animation: none;
}

/* Glow pulsante sutil (repouso) */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(225,20,20,.2),  0 0 80px rgba(225,20,20,.08); }
  50%      { box-shadow: 0 0 52px rgba(225,20,20,.3), 0 0 100px rgba(225,20,20,.12); }
}
.price-card--featured {
  animation: glow-pulse 4s ease-in-out infinite;
}

.price-card__badge {
  position: absolute;
  top: 0;
  left: var(--sp-24);
  transform: translateY(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-16);
  border-radius: var(--r-pill);
}

.price-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-12);
}

.price-card__price {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--sp-16);
}
.price-card__currency {
  font-size: 0.45em;
  vertical-align: super;
  margin-right: 2px;
  color: var(--muted);
}
.price-card__cents {
  font-size: 0.4em;
  color: var(--muted);
}
.price-card--featured .price-card__price {
  color: var(--red);
}

.price-card__desc {
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.65;
  margin-bottom: var(--sp-24);
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-bottom: var(--sp-32);
  flex: 1;                     /* empurra CTA para baixo */
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-8);
  font-size: var(--fs-small);
  color: var(--text);
  line-height: 1.5;
}
.price-card__list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card__cta {
  width: 100%;
  margin-top: auto;
}


/* ─────────────────────────────────────────────────────────
   10. NOTES (bônus + política de pagamento)
   ───────────────────────────────────────────────────────── */
.pacotes__notes {
  display: grid;
  gap: var(--sp-16);
  margin-top: var(--sp-48);
}

.note {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-24);
}
.note--bonus {
  border-left: 3px solid var(--red);
}
.note--payment {
  border-left: 3px solid var(--muted);
}

.note__title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-12);
}

.note__text {
  color: var(--muted);
  font-size: clamp(0.938rem, 1.8vw, 1rem);
  line-height: 1.65;
}
.note__text + .note__text {
  margin-top: var(--sp-8);
}


/* ─────────────────────────────────────────────────────────
   11. FOOTER
   ───────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--ink)              0%,
    rgba(11, 11, 13, .85)  35%,
    rgba(11, 11, 13, .92)  100%
  );
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-48);
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-48);
}

/* Brand no footer — ocultado, conteúdo movido para dentro do perfil */
.footer__brand {
  display: none;
}

/* Bloco CTA */
.footer__cta-block {
  text-align: center;
  width: 100%;
  max-width: 640px;
}
.footer__call {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-24);
}
.footer__cta-block .btn--wa {
  margin-bottom: var(--sp-16);
}

.wesley-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-24);
  margin-bottom: var(--sp-32);
  text-align: center;
}
.wesley-profile__img {
  width: clamp(160px, 50vw, 260px);
  height: clamp(160px, 50vw, 260px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--red);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(225, 20, 20, 0.18);
  flex-shrink: 0;
}
.wesley-profile__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.wesley-profile__logo {
  width: 40px;
  height: auto;
  opacity: 0.75;
  margin-bottom: var(--sp-8);
}
.wesley-profile__title {
  color: var(--red);
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.wesley-profile__name {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.02em;
}

.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  color: var(--muted);
  font-size: var(--fs-small);
  transition: color var(--t-fast) var(--ease);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.footer__ig:hover,
.footer__ig:focus-visible {
  color: var(--text);
  border-bottom-color: var(--red);
}

/* Links rápidos */
.footer__links {
  text-align: center;
}
.footer__links-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-16);
}
.footer__links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-24);
}
.footer__links a {
  font-size: var(--fs-small);
  color: var(--muted);
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--text);
}

/* Barra inferior (copyright) */
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: var(--sp-24) var(--gutter);
  padding-bottom: calc(var(--sp-24) + 72px); /* espaço para o wa-float não sobrepor */
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-16);
}
@media (min-width: 768px) {
  .footer__bottom {
    padding-bottom: var(--sp-24); /* desktop: wa-float não atrapalha */
  }
}

.theme-toggle {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--text);
  border-color: var(--red);
  transform: translateY(-2px);
}
html.theme-light .ico-moon { display: none !important; }
html.theme-light .ico-sun { display: block !important; }

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: column;
  }
}


/* ─────────────────────────────────────────────────────────
   12. WHATSAPP FLOAT
   ───────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--sp-24);
  right: var(--sp-24);
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, .35); }
  50%      { box-shadow: 0 4px 24px rgba(37, 211, 102, .55),
                          0 0 0 10px rgba(37, 211, 102, .08); }
}


/* ─────────────────────────────────────────────────────────
   13. MODAL
   ───────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;         /* card flutuante centralizado */
  justify-content: center;
  padding: var(--sp-16);       /* respiro nas bordas da tela */
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.modal:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card); /* arredondado em todos os cantos */
  padding: var(--sp-24) var(--sp-16) var(--sp-32);
  transform: translateY(32px);
  transition: transform var(--t-mid) var(--ease);
}
.modal:not([hidden]) .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-12);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
  border-radius: var(--r-btn);
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.modal__close:hover,
.modal__close:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.modal__eyebrow {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-4);
}

.modal__title {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-24);
}

/* Indicador de progresso (1 → 2 → 3) */
.modal__progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--sp-32);
}
.modal__progress-step {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--t-mid) var(--ease),
              color var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.modal__progress-step.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.modal__progress-step.is-done {
  background: var(--red-deep);
  color: #fff;
  border-color: var(--red-deep);
}

.modal__progress-bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.modal__progress-fill {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.modal__progress-fill.is-filled {
  transform: scaleX(1);
}

/* Labels */
.modal__label {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-16);
}
.modal__hint {
  font-family: var(--ff-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 400;
}

/* Grade de marcas */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.brand-grid__btn {
  padding: var(--sp-8) var(--sp-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 600;
  text-align: center;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  width: 100%;
  letter-spacing: 0.02em;
}
.brand-grid__btn:hover {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
}
.brand-grid__btn.is-selected {
  border-color: var(--red);
  background: rgba(225, 20, 20, .08);
  color: var(--red);
}

/* Campo de busca de modelo */
.search {
  position: relative;
  margin-bottom: var(--sp-12);
}
.search__ico {
  position: absolute;
  left: var(--sp-16);
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.search__input {
  width: 100%;
  padding: var(--sp-12) var(--sp-16) var(--sp-12) var(--sp-48);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  color: var(--text);
  font-size: var(--fs-body);
  transition: border-color var(--t-fast) var(--ease);
  min-height: 48px;
}
.search__input::placeholder {
  color: var(--muted);
}
.search__input:focus {
  outline: none;
  border-color: var(--red);
}

/* Lista de modelos */
.model-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-height: 200px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.model-list__item {
  padding: var(--sp-12) var(--sp-16);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  cursor: pointer;
  font-size: var(--fs-small);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.model-list__item:hover {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
}
.model-list__item.is-selected {
  border-color: var(--red);
  background: rgba(225, 20, 20, .08);
  color: var(--red);
}

/* Textarea */
.modal__textarea {
  width: 100%;
  padding: var(--sp-12) var(--sp-16);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  color: var(--text);
  font-size: var(--fs-body);
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--t-fast) var(--ease);
}
.modal__textarea::placeholder {
  color: var(--muted);
}
.modal__textarea:focus {
  outline: none;
  border-color: var(--red);
}

/* Resumo */
.modal__summary {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: var(--sp-16);
  margin-bottom: var(--sp-16);
  font-size: var(--fs-small);
  line-height: 1.65;
}
.modal__summary strong {
  color: var(--red);
}

/* Ações do modal */
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-top: var(--sp-24);
}
.modal__actions .btn {
  flex: 1;
  min-width: 0; /* permite encolher */
}

/* No mobile: empilha os botões verticalmente */
@media (max-width: 479px) {
  .modal__actions {
    flex-direction: column;
  }
  .modal__actions .btn {
    width: 100%;
    flex: unset;
  }
}

/* ─────────────────────────────────────────────────────────
   MOBILE MODAL — layout compacto (< 480px)
   Estratégia: 3 colunas + botões menores + ações sticky
   ───────────────────────────────────────────────────────── */
@media (max-width: 479px) {

  /* Dialog ocupa tela, com respiro em volta, scroll interno */
  .modal__dialog {
    max-height: calc(100dvh - 32px); /* respeita o padding do container */
    padding: var(--sp-16) 12px 0; /* zero padding-bottom: ações são sticky */
    display: flex;
    flex-direction: column;
  }

  /* Comprime eyebrow + título */
  .modal__eyebrow {
    font-size: 0.65rem;
    margin-bottom: 2px;
    letter-spacing: 0.12em;
  }
  .modal__title {
    font-size: 1.05rem;
    margin-bottom: var(--sp-12);
  }

  /* Comprime indicador de progresso */
  .modal__progress {
    margin-bottom: var(--sp-16);
  }
  .modal__progress-step {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  /* Label do passo */
  .modal__label {
    font-size: 0.8rem;
    margin-bottom: var(--sp-8);
  }

  /* Conteúdo do passo faz scroll */
  .modal__step {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: var(--sp-8);
  }

  /* ★ GRADE DE MARCAS: 3 colunas compactas */
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .brand-grid__btn {
    min-height: 40px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 2px;
    border-radius: 6px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  /* Lista de modelos mais compacta */
  .model-list {
    max-height: 45dvh;
  }
  .model-list__item {
    min-height: 38px;
    font-size: 0.82rem;
    padding: var(--sp-8) var(--sp-12);
  }

  /* Ações ficam grudadas no fundo — sempre visíveis */
  .modal__actions {
    position: sticky;
    bottom: 0;
    background: var(--surface);
    padding: var(--sp-12) 0 var(--sp-16);
    margin-top: var(--sp-8);
    border-top: 1px solid var(--line);
    flex-direction: row; /* lado a lado quando couber */
    gap: var(--sp-8);
  }
  .modal__actions .btn {
    flex: 1;
    width: auto;
    min-height: 44px;
    font-size: 0.85rem;
    padding: 0 var(--sp-8);
  }
  /* Se tiver 3 botões (Voltar + Continuar + WhatsApp), empilha WhatsApp */
  .modal__actions .btn--wa {
    flex: 0 0 100%;
    order: 3;
  }
}


/* ─────────────────────────────────────────────────────────
   14. SCROLL REVEAL (classes gerenciadas por JS)
   ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger em filhos (para grids de cards) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay:   0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay:  80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────────────────────────────────────────────────────
   15a. RESPONSIVE — xs (≤ 359px) telas muito pequenas
   ───────────────────────────────────────────────────────── */
@media (max-width: 359px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}


/* ─────────────────────────────────────────────────────────
   15. RESPONSIVE — sm (≥ 480px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--problems {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ─────────────────────────────────────────────────────────
   16. RESPONSIVE — md (≥ 768px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --header-h: 72px;
  }

  .cards--features {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--problems {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards--pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .pacotes__notes {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer centralizado no tablet+ */
  .footer__inner {
    align-items: center;
  }
  .footer__cta-block {
    text-align: center;
  }
  .wesley-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-32);
  }
  .wesley-profile__info {
    align-items: center;
  }
  .footer__actions {
    justify-content: center;
  }

  /* Modal centralizado no tablet+ */
  .modal {
    align-items: center;
    padding: var(--sp-32);
  }
  .modal__dialog {
    border-radius: var(--r-card);
    margin: auto;
    padding: var(--sp-32);
  }
}


/* ─────────────────────────────────────────────────────────
   17. RESPONSIVE — lg (≥ 1024px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  /* Mostra nav desktop, esconde hamburger */
  .nav          { display: flex; }
  .header__cta  { display: inline-flex; }
  .nav-toggle   { display: none; }

  .cards--features {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards--pricing {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__actions {
    flex-wrap: nowrap;
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ─────────────────────────────────────────────────────────
   18. RESPONSIVE — xl (≥ 1200px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  :root {
    --gutter: 40px;
  }
}


/* ─────────────────────────────────────────────────────────
   19. ACESSIBILIDADE — Reduced Motion
   ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}


/* ─────────────────────────────────────────────────────────
   20. SCROLLBAR (dark theme)
   ───────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────
   21. ADIÇÕES — Domicílio · Wesley · Instagram · footer nav
   ───────────────────────────────────────────────────────── */

/* Atendimento a domicílio */
.section--domicilio { background: var(--ink); }
.domicilio {
  position: relative;
  display: grid;
  gap: var(--sp-24);
  background: linear-gradient(135deg, rgba(225, 20, 20, .12), rgba(28, 28, 34, .55));
  border: 1px solid rgba(225, 20, 20, .28);
  border-radius: var(--r-card);
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
}
.domicilio__lead {
  margin: var(--sp-16) 0 var(--sp-24);
  color: var(--muted);
  font-size: clamp(0.938rem, 2vw, 1.0625rem);
  line-height: 1.7;
  max-width: 54ch;
}
.domicilio__points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  margin-bottom: var(--sp-32);
}
.domicilio__points li {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  font-weight: 500;
  font-size: var(--fs-small);
}
.domicilio__points .ico { color: var(--red); }
.domicilio__visual { display: none; }

/* Wesley — foto maior + textos */
.wesley-profile__role {
  color: var(--text);
  font-size: clamp(0.938rem, 1.8vw, 1.05rem);
  font-weight: 600;
  margin-top: var(--sp-8);
  text-align: center;
}
.wesley-profile__bio {
  color: var(--muted);
  font-size: clamp(0.938rem, 1.8vw, 1.0625rem);
  line-height: 1.6;
  margin-top: var(--sp-8);
  max-width: 42ch;
  text-align: center;
}

/* Ações do rodapé (WhatsApp + Instagram) */
.footer__actions {
  display: flex;
  flex-direction: column;  /* mobile: um abaixo do outro */
  gap: var(--sp-12);
  justify-content: center;
  margin-top: var(--sp-24);
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.footer__actions .btn {
  width: 100%;
  height: 64px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 5%;
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
/* Desktop: lado a lado */
@media (min-width: 480px) {
  .footer__actions {
    flex-direction: row;
    max-width: 500px;
  }
  .footer__actions .btn {
    flex: 1;
    width: auto;
  }
}
/* Ícones dentro dos botões do footer — maiores */
.footer__actions .btn .ico {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
}

/* Botão Instagram (gradiente da marca) */
.btn--ig {
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 22%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  color: #fff;
  border: none;
}
.btn--ig:hover,
.btn--ig:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(214, 41, 118, .45);
  filter: saturate(1.08);
}

/* Nav do rodapé (links logo acima do copyright) */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8) var(--sp-24);
}
.footer__nav a {
  font-size: var(--fs-small);
  color: var(--muted);
  transition: color var(--t-fast) var(--ease);
}
.footer__nav a:hover,
.footer__nav a:focus-visible { color: var(--text); }

@media (min-width: 768px) {
  .domicilio {
    grid-template-columns: 1.5fr 0.5fr;
    align-items: center;
    gap: var(--sp-48);
  }
  .domicilio__visual {
    display: grid;
    place-items: center;
    position: relative;
  }
  .domicilio__art {
    width: clamp(130px, 16vw, 200px);
    opacity: .92;
    filter: drop-shadow(0 8px 30px rgba(225, 20, 20, .4));
  }
  .domicilio__pin {
    position: absolute;
    top: -6px;
    right: 14%;
    color: var(--red);
    background: var(--ink);
    border: 1px solid rgba(225, 20, 20, .45);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
  }
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) var(--ink);
}


/* ─────────────────────────────────────────────────────────
   21. FOCUS GLOBAL
   ───────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ─────────────────────────────────────────────────────────
   22. LOCATION CARD
   ───────────────────────────────────────────────────────── */
.section--localizacao {
  background: var(--ink);
}

.location-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location-card__map {
  position: relative;
  background: var(--surface-2);
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Iframe do Google Maps */
.location-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--t-mid) var(--ease);
}
.location-card__iframe:hover {
  filter: grayscale(0%) contrast(1);
}

.location-card__pin {
  position: relative;
  z-index: 2;
  color: var(--red);
  filter: drop-shadow(0 4px 12px rgba(225, 20, 20, 0.4));
  animation: pin-bounce 2s infinite ease-in-out;
}

.location-card__pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  50% { opacity: 0.25; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.location-card__content {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.location-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.location-card__address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  margin-top: var(--sp-8);
}

@media (min-width: 768px) {
  .location-card {
    flex-direction: row;
  }
  .location-card__map {
    width: 40%;
    height: auto;
    min-height: 240px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .location-card__content {
    width: 60%;
    padding: var(--sp-32);
    justify-content: center;
  }
  .location-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
