/* ==========================================================================
   ASSOCIAÇÃO LIVE THE LIFE — Folha de estilos principal
   Consome os tokens de assets/css/tokens.css
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--color-primary-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl)); font-weight: var(--weight-bold); text-transform: uppercase; }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)); font-weight: var(--weight-semibold); text-transform: uppercase; }
h3 { font-size: var(--text-xl); font-weight: var(--weight-semibold); }

p { max-width: 68ch; }

:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--color-primary); color: #fff;
  padding: var(--space-3) var(--space-5); border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--space-6); }

.section { padding-block: clamp(var(--space-16), 9vw, var(--space-24)); }
.section-alt { background: var(--color-surface-alt); }

.section-head { max-width: 640px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-head p { color: var(--color-text-muted); margin-top: var(--space-4); font-size: var(--text-lg); }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-base); font-weight: var(--weight-semibold);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  text-align: center;
}
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--color-heading); border-color: var(--color-border-strong); }
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { background: var(--brand-50); color: var(--brand-800); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.btn-whatsapp { background: #1FA971; color: #fff; }
.btn-whatsapp:hover { background: #167951; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: var(--space-5) var(--space-10); font-size: var(--text-lg); }

/* ---------- Header / Navegação ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); min-height: 76px;
}
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand img { height: 52px; width: auto; }
.brand-name {
  font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: var(--text-sm); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--color-heading); line-height: 1.15;
}

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: var(--color-text-muted); padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--color-heading); border-bottom-color: var(--color-primary); }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  font: inherit; font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: var(--color-text-muted); background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px; padding: var(--space-2) 0;
}
.nav-dropdown > button:hover { color: var(--color-heading); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 280px; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--space-2);
  opacity: 0; visibility: hidden; transition: all var(--duration-base) var(--ease-out);
  list-style: none;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md); border-bottom: none;
  color: var(--color-text); font-weight: var(--weight-medium);
}
.nav-dropdown-menu a:hover { background: var(--color-primary-subtle); color: var(--color-primary-active); }
.nav-dropdown-menu a small { display: block; color: var(--color-text-subtle); font-weight: var(--weight-regular); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn { padding: var(--space-3) var(--space-6); font-size: var(--text-sm); }

.theme-toggle {
  background: none; border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full); width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--color-text-muted); font-size: var(--text-lg);
  transition: all var(--duration-base) var(--ease-out);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: var(--radius-md);
  align-items: center; justify-content: center; color: var(--color-heading);
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1024px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    padding: var(--space-4) var(--space-6) var(--space-8);
    display: none; max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); font-size: var(--text-base); }
  .nav-dropdown > button { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; min-width: 0; padding: 0; background: transparent;
  }
  .nav-dropdown-menu a { padding: var(--space-4) 0 var(--space-4) var(--space-4); border-bottom: 1px solid var(--color-border); border-radius: 0; }
  .header-actions .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient-brand);
  color: #fff;
  padding-block: clamp(var(--space-20), 12vw, 9rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 85% 20%, rgba(232,179,49,.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(12,24,36,.35), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  margin-bottom: var(--space-6); backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero-sub { font-size: clamp(var(--text-lg), 2.2vw, var(--text-xl)); color: rgba(255,255,255,.92); max-width: 56ch; margin-top: var(--space-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }
.hero-note { margin-top: var(--space-6); font-size: var(--text-sm); color: rgba(255,255,255,.75); }

/* Hero interno (páginas) */
.page-hero {
  background: var(--gradient-brand); color: #fff;
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 90% 15%, rgba(232,179,49,.2), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); font-size: var(--text-lg); margin-top: var(--space-5); max-width: 58ch; }
.page-hero .eyebrow { color: var(--gold-300); }
.breadcrumb { font-size: var(--text-sm); color: rgba(255,255,255,.75); margin-bottom: var(--space-5); }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-5); font-weight: var(--weight-semibold); font-size: var(--text-sm); }

.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--color-primary-subtle); color: var(--color-primary-active);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5); font-size: var(--text-2xl);
}
.card-icon svg { width: 28px; height: 28px; }

[data-theme="dark"] .card-icon { background: rgba(245,124,47,.12); color: var(--brand-300); }

/* ---------- Placeholder de imagem ---------- */
.img-placeholder {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--gradient-brand);
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.img-placeholder.wide { aspect-ratio: 16/9; }
.img-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(232,179,49,.25), transparent 65%),
              linear-gradient(to top, rgba(12,24,36,.55), transparent 55%);
}
.img-placeholder span {
  position: relative; color: rgba(255,255,255,.95);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  padding: var(--space-4) var(--space-5);
}

/* ---------- Passos (como funciona / processo) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); counter-reset: step; }
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .steps, .steps.steps-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps, .steps.steps-3 { grid-template-columns: 1fr; } }
.step { position: relative; padding: var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); }
.step-num {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: var(--weight-bold);
  color: var(--brand-200); line-height: 1; margin-bottom: var(--space-4);
}
[data-theme="dark"] .step-num { color: var(--brand-700); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Números / Stats ---------- */
.stats { background: var(--brand-ink); color: #fff; }
[data-theme="dark"] .stats { background: var(--color-surface-alt); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); text-align: center; }
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-value {
  font-family: var(--font-display); font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-bold); color: var(--gold-400); line-height: 1;
}
.stat-label { margin-top: var(--space-3); color: rgba(255,255,255,.82); font-size: var(--text-sm); }
[data-theme="dark"] .stat-label { color: var(--color-text-muted); }

/* ---------- Depoimentos ---------- */
.testimonial {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.testimonial blockquote { font-size: var(--text-base); color: var(--color-text); font-style: italic; line-height: var(--leading-relaxed); }
.testimonial cite { font-style: normal; font-size: var(--text-sm); color: var(--color-text-subtle); }
.testimonial cite strong { display: block; color: var(--color-heading); font-weight: var(--weight-semibold); }
.testimonial .quote-mark { font-family: var(--font-display); font-size: var(--text-5xl); line-height: .5; color: var(--brand-300); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-weight: var(--weight-semibold); color: var(--color-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-primary);
  transition: transform var(--duration-base) var(--ease-out); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 var(--space-6) var(--space-6); color: var(--color-text-muted); }
.faq-item .faq-body a { font-weight: var(--weight-semibold); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: var(--space-8); }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand-300), var(--brand-600)); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: var(--space-10); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: calc(-1 * var(--space-8) + 1px); top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-primary); border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
}
.timeline-date { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: var(--text-sm); color: var(--color-primary); font-weight: var(--weight-semibold); }
.timeline-item h3 { margin: var(--space-1) 0 var(--space-2); font-size: var(--text-lg); }
.timeline-item p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ---------- Listas de benefícios ---------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-text-muted); }
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--success-50); color: var(--success-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: var(--weight-bold); margin-top: 2px;
}
[data-theme="dark"] .check-list li::before { background: rgba(31,169,113,.15); color: var(--success-500); }
.check-list li strong { color: var(--color-heading); }

/* ---------- Split (texto + imagem) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 6vw, var(--space-20)); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .section-head { margin-bottom: var(--space-6); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gradient-brand); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 15% 100%, rgba(12,24,36,.3), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: var(--space-5) auto 0; font-size: var(--text-lg); }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Formulário ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--color-heading); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: var(--text-xs); color: var(--color-text-subtle); }

/* ---------- Info de contato ---------- */
.contact-card { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); }
.contact-card .card-icon { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; font-size: var(--text-lg); }
.contact-card h3 { font-size: var(--text-base); margin-bottom: 2px; }
.contact-card p, .contact-card a { font-size: var(--text-sm); color: var(--color-text-muted); }
.contact-card a:hover { color: var(--color-primary); }

.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); filter: grayscale(.2); }

/* ---------- Parceiros ---------- */
.partners { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.partner-chip {
  border: 1px solid var(--color-border); border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5); font-size: var(--text-sm);
  color: var(--color-text-muted); background: var(--color-surface);
  transition: all var(--duration-base) var(--ease-out);
}
.partner-chip:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }

/* ---------- Equipe ---------- */
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto var(--space-5);
  background: var(--gradient-brand); display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: var(--text-3xl); font-weight: var(--weight-bold);
  box-shadow: var(--shadow-brand);
}
.team-card .role { color: var(--color-primary); font-size: var(--text-sm); font-weight: var(--weight-semibold); margin: var(--space-1) 0 var(--space-3); }
.team-card .bio { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Alert / destaque ---------- */
.notice {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--gold-50); border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6);
  color: var(--gold-900);
}
[data-theme="dark"] .notice { background: rgba(232,179,49,.08); border-color: rgba(232,179,49,.25); color: var(--gold-200); }
.notice strong { font-weight: var(--weight-bold); }

/* ---------- Footer ---------- */
.footer { background: var(--brand-ink); color: var(--neutral-300); padding-block: var(--space-20) var(--space-8); }
[data-theme="dark"] .footer { background: #050B12; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--space-10); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: var(--text-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; margin-bottom: var(--space-5); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { color: var(--neutral-300); font-size: var(--text-sm); }
.footer a:hover { color: var(--gold-300); }
.footer p { font-size: var(--text-sm); color: var(--neutral-400); }
.footer .brand img { height: 64px; }
.footer-bottom {
  margin-top: var(--space-16); padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
  font-size: var(--text-xs); color: var(--neutral-500);
}

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1FA971; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform var(--duration-base) var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
