/* ============================================
   OFICINA VISÍVEL — DESIGN SYSTEM
   Dark Technology Interface
   ============================================ */

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

:root {
  /* Colors */
  --black:       #07090D;
  --graphite:    #11151C;
  --graphite-2:  #161B24;
  --white:       #F5F7FA;
  --text-muted:  #8E98A8;
  --blue:        #00A8FF;
  --blue-glow:   rgba(0, 168, 255, 0.15);
  --cyan:        #00E5FF;
  --green:       #25D366;
  --amber:       #FFB020;
  --red:         #FF4D5E;
  --border:      rgba(255,255,255,0.06);
  --border-blue: rgba(0, 168, 255, 0.2);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1200px;
  --radius:     12px;
  --radius-lg:  20px;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --dur:  0.4s;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 3px; }

/* ---------- CANVAS BG ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ---------- CURSOR GLOW ---------- */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

/* ---------- CONTAINER ---------- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--blue);
  color: var(--black);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  box-shadow: 0 0 24px rgba(0,168,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,168,255,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1rem; }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--dur) var(--ease);
}
.btn-whatsapp:hover { box-shadow: 0 0 30px rgba(37,211,102,0.4); transform: translateY(-2px); }

/* ---------- SECTION BASE ---------- */
.section {
  padding-block: var(--section-py);
  position: relative;
  z-index: 2;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.highlight {
  color: var(--blue);
  position: relative;
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-delay="60"]  { transition-delay: 0.06s; }
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="120"] { transition-delay: 0.12s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="180"] { transition-delay: 0.18s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="360"] { transition-delay: 0.36s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="420"] { transition-delay: 0.42s; }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background var(--dur), backdrop-filter var(--dur), box-shadow var(--dur);
}
#header.scrolled {
  background: rgba(7, 9, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-text strong {
  color: var(--blue);
  font-weight: 700;
}

#main-nav { margin-left: auto; }
#main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
#main-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
#main-nav a:hover { color: var(--white); }

#header-cta { margin-left: 1rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.section-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(6rem, 10vw, 8rem) clamp(4rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0,168,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,229,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  background: rgba(0,168,255,0.06);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.trust-sep { color: var(--border); }

/* Hero Dashboard */
.hero-dashboard {
  position: relative;
}

.dashboard-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,168,255,0.1),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(0,168,255,0.05);
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.6;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dash-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dash-badge {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(0,168,255,0.1);
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

/* Score ring */
.dash-score-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.score-ring {
  position: relative;
  width: 130px;
  height: 130px;
}
.score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 8;
}
.score-fill {
  fill: none;
  stroke: var(--blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 1.5s var(--ease);
  filter: drop-shadow(0 0 6px rgba(0,168,255,0.6));
}
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.score-max {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.score-label {
  font-size: 0.55rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Metrics */
.dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.metric-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.metric-label { color: var(--text-muted); flex: 1; }
.metric-value { font-weight: 600; color: var(--white); font-family: var(--font-display); }
.metric-value.accent { color: var(--amber); }
.metric-value.success { color: var(--cyan); }

/* Mini bars */
.dash-bars { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--blue);
  width: var(--w);
  transition: width 1.5s var(--ease);
}
.bar-fill.bar-green { background: var(--green); }
.bar-fill.bar-red { background: var(--red); }
.bar-pct { font-size: 0.68rem; font-weight: 600; color: var(--white); min-width: 28px; text-align: right; }

/* Pulse dot */
.dash-pulse-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Float chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--graphite-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
}
.float-chip-1 { top: -16px; right: 20px; animation-delay: 0s; }
.float-chip-2 { bottom: 30px; left: -24px; animation-delay: 1s; }
.float-chip-3 { top: 40%; right: -24px; animation-delay: 2s; }

.chip-dot { width: 6px; height: 6px; border-radius: 50%; }
.chip-green { background: var(--green); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
  animation: fadeInUp 1s 2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { height: 0; opacity: 0; }
  50% { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   PROBLEMA
   ============================================ */
.section-problema {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.search-demo {
  max-width: 600px;
  margin: 3rem auto;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--graphite-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
}
.search-cursor {
  width: 2px;
  height: 1.1em;
  background: var(--blue);
  display: inline-block;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.search-results {
  background: var(--graphite-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.search-result-item:last-child { border-bottom: none; }

.result-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.result-icon.comp { background: rgba(0,168,255,0.12); color: var(--blue); }
.result-icon.mine { background: rgba(255,77,94,0.12); color: var(--red); }

.result-info { flex: 1; }
.result-info strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.result-info span { font-size: 0.75rem; color: var(--text-muted); }

.result-badge {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.badge-found { background: rgba(37,211,102,0.1); color: var(--green); }
.badge-missing { background: rgba(255,77,94,0.1); color: var(--red); }

.result-mine {
  background: rgba(255,77,94,0.04);
  opacity: 0.75;
}

.problem-text {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.problem-text p { margin-bottom: 0.75rem; }
.problem-text strong { color: var(--white); }

.microcopy-strip {
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.strip-sep { color: var(--border-blue); }

/* ============================================
   CONSCIÊNCIA
   ============================================ */
.section-consciencia { text-align: center; }
.section-consciencia .section-label,
.section-consciencia .section-title { display: block; text-align: center; }
.section-consciencia .section-label::before { display: none; }
.section-consciencia .section-label {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  text-align: left;
}

.comp-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.comp-card:hover { transform: translateY(-4px); }

.comp-card.comp-bad { border-color: rgba(255,77,94,0.2); }
.comp-card.comp-good {
  border-color: var(--border-blue);
  box-shadow: 0 0 40px rgba(0,168,255,0.08);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.comp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comp-icon.danger { background: rgba(255,77,94,0.12); }
.comp-icon.success { background: rgba(37,211,102,0.12); }

.comp-header h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.comp-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.comp-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comp-x { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }
.comp-check { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }

.comp-result {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-align: center;
}
.danger-result { background: rgba(255,77,94,0.08); color: var(--red); }
.success-result { background: rgba(0,168,255,0.08); color: var(--blue); }

.comp-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
}
.arrow-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
}

/* ============================================
   DIAGNÓSTICO
   ============================================ */
.section-diagnostico {
  background: var(--graphite);
  border-top: 1px solid var(--border);
}

.diag-badge {
  margin-bottom: 1.5rem;
}
.badge-free {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  background: rgba(37,211,102,0.06);
}

.diag-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.diag-score-panel {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.diag-score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.system-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
}
.example-tag {
  font-size: 0.65rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}

.diag-score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.big-score-ring {
  position: relative;
  width: 160px;
  height: 160px;
}
.big-score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-fill-diag {
  stroke: var(--amber);
  filter: drop-shadow(0 0 8px rgba(255,176,32,0.5));
  stroke-dasharray: 427;
  stroke-dashoffset: 427;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.big-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.big-score-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.big-score-max { font-size: 0.9rem; color: var(--text-muted); }

.score-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}
.warning-status {
  background: rgba(255,176,32,0.1);
  color: var(--amber);
  border: 1px solid rgba(255,176,32,0.2);
}

.diag-dimensions { display: flex; flex-direction: column; gap: 0.8rem; }
.dim-row { display: flex; align-items: center; gap: 0.75rem; }
.dim-name { font-size: 0.8rem; color: var(--text-muted); min-width: 80px; }
.dim-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.dim-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--blue);
  transition: width 1.5s var(--ease);
}
.dim-bar-success { background: var(--green); }
.dim-bar-danger { background: var(--red); }
.dim-bar-warning { background: var(--amber); }
.dim-pct { font-size: 0.75rem; font-weight: 600; min-width: 34px; text-align: right; font-family: var(--font-display); }
.dim-warning { color: var(--amber); }
.dim-success { color: var(--green); }
.dim-danger { color: var(--red); }
.dim-neutral { color: var(--blue); }

/* Analysis Cards */
.diag-cards-grid { }
.analysis-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.analysis-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.analysis-card:hover {
  border-color: var(--border-blue);
  background: rgba(0,168,255,0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.ac-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,168,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.analysis-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.analysis-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.diag-cta-block {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background: var(--black);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.diag-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.diag-cta-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.diag-cta-block p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.timeline {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(0,168,255,0.1));
}

.timeline-item {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
}

.tl-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--black);
  border: 1px solid var(--border-blue);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,168,255,0.15);
}

.tl-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tl-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.como-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.como-cta-text { color: var(--text-muted); font-style: italic; }

/* ============================================
   YCARO
   ============================================ */
.section-ycaro {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ycaro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.ycaro-photo-wrap { position: relative; }

.ycaro-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}
.ycaro-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-blue);
  z-index: 2;
  pointer-events: none;
}
.ycaro-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter var(--dur);
}
.ycaro-photo-frame:hover img { filter: grayscale(0%); }

.ycaro-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7,9,13,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  z-index: 3;
}
.ycaro-badge-title {
  display: block;
  font-size: 0.65rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: var(--font-display);
}
.ycaro-badge-brand {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
}

.photo-frame-glow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: rgba(0,168,255,0.15);
  filter: blur(40px);
  pointer-events: none;
}

.ycaro-content { }
.ycaro-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.ycaro-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ycaro-quote {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
}
.quote-line {
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  border-radius: 2px;
  flex-shrink: 0;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
}

.ycaro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  transition: all 0.2s;
}
.tag:hover { border-color: var(--border-blue); color: var(--blue); }

/* ============================================
   EMOTION
   ============================================ */
.section-emotion { }

.emotion-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.emotion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,168,255,0.06) 0%, transparent 60%);
}
.emotion-icon { margin-bottom: 1.5rem; }

.emotion-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.emotion-texts p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  max-width: 540px;
  margin-inline: auto;
}
.emotion-texts strong { color: var(--white); }

.emotion-finish {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue) !important;
  margin-top: 1.5rem !important;
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--dur) var(--ease);
}
.benefit-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,168,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CONCORRÊNCIA
   ============================================ */
.section-concorrencia {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  text-align: center;
}
.section-concorrencia .section-label { justify-content: center; }
.section-concorrencia .section-label::before { display: none; }

.funnel-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 3rem auto;
  max-width: 480px;
}

.funnel-step {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.funnel-client { border-color: var(--border-blue); color: var(--blue); }

.funnel-search { width: 300px; }
.funnel-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--graphite-2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.funnel-google { border-color: var(--border); color: var(--white); }
.google-label { font-size: 0.8rem; color: var(--text-muted); }

.funnel-arrow-down {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--border-blue), transparent);
  margin: 0;
}

.funnel-results {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.funnel-result {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 110px;
  font-size: 0.8rem;
  font-weight: 500;
}
.result-a, .result-b {
  border-color: rgba(37,211,102,0.2);
}
.result-invisible { border-color: rgba(255,77,94,0.2); opacity: 0.7; }
.result-rank { font-family: var(--font-display); font-size: 0.7rem; color: var(--text-muted); }
.result-stars { color: var(--amber); font-size: 0.7rem; }
.result-contact {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green);
  background: rgba(37,211,102,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}
.result-invisible-label {
  font-size: 0.65rem;
  color: var(--red);
}

.concorrencia-text {
  max-width: 540px;
  margin: 2rem auto 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.concorrencia-text strong { color: var(--white); }

/* ============================================
   FORMULÁRIO
   ============================================ */
.section-formulario { }

.form-panel {
  max-width: 760px;
  margin: 0 auto;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.form-header {
  margin-bottom: 2.5rem;
}
.form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
}
.form-header p { color: var(--text-muted); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.form-group-full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group .optional { font-size: 0.72rem; color: rgba(142,152,168,0.6); }

.form-group input,
.form-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,168,255,0.1);
}
.form-group input::placeholder { color: rgba(142,152,168,0.5); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%238E98A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; }
.form-group select option { background: var(--graphite); }

.btn-form {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1.1rem;
  margin-bottom: 1rem;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Form success */
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon { animation: scale-in 0.5s var(--ease) both; }
@keyframes scale-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.form-success p { color: var(--text-muted); max-width: 400px; }

/* ============================================
   FAQ
   ============================================ */
.section-faq { }

.faq-list {
  max-width: 680px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--border-blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question[aria-expanded="true"] { color: var(--blue); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta-final {
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,168,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,229,255,0.04) 0%, transparent 60%);
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final-content .section-label { justify-content: center; }
.cta-final-content .section-label::before { display: none; }

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0;
}
.cta-final-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.cta-final-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--graphite);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1rem 0 0.5rem;
  max-width: 280px;
}
.footer-founder { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--blue);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-whatsapp:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--dur) var(--ease);
  animation: float-in 0.8s 1.5s var(--ease) both;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
  transform: translateY(-3px);
}

@keyframes float-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-dashboard { max-width: 400px; margin: 0 auto; }
  .float-chip-2, .float-chip-3 { display: none; }
  .float-chip-1 { right: 10px; }
  .diag-main { grid-template-columns: 1fr; }
  .diag-score-panel { position: static; }
  .ycaro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ycaro-photo-frame { max-height: 400px; max-width: 320px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .comp-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(3rem, 7vw, 5rem); }

  #main-nav {
    position: fixed;
    inset: 0;
    background: rgba(7,9,13,0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
  }
  #main-nav.open { transform: translateX(0); }
  #main-nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  #main-nav a { font-size: 1.2rem; }

  .menu-toggle { display: flex; }
  #header-cta { display: none; }

  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline::before { display: none; }
  .timeline-item { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; padding: 0; }
  .tl-number { flex-shrink: 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .analysis-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .whatsapp-float-text { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .emotion-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .form-panel { padding: 1.5rem; }
  .diag-cta-block { padding: 2rem 1.5rem; }
  .cta-final-title { font-size: 1.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  #bg-canvas { display: none; }
  #cursor-glow { display: none; }
}
