/* ==========================================
   Services OS — Landing Page
   Design premium, mobile-first, dark mode ready
   ========================================== */

:root {
  /* Paleta */
  --violet: #6d28d9;
  --violet-light: #8b5cf6;
  --violet-dark: #5b21b6;
  --indigo: #4f46e5;
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --border: #e9e6f5;
  --border-soft: #f3f1fa;
  --emerald: #10b981;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --pink: #ec4899;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 16px rgba(109, 40, 217, 0.08);
  --shadow-lg: 0 20px 50px rgba(109, 40, 217, 0.12);
  --shadow-xl: 0 30px 80px rgba(109, 40, 217, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0613;
    --bg-soft: #100a1f;
    --bg-card: #15102a;
    --text: #f1ecff;
    --text-soft: #b8b0d4;
    --text-muted: #7a7290;
    --border: #2a2142;
    --border-soft: #1f1834;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }

.gradient-text {
  background: linear-gradient(120deg, var(--violet), var(--violet-light), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(109, 40, 217, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { font-size: 18px; color: var(--text-soft); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(120deg, var(--violet), var(--violet-light));
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(109, 40, 217, 0.45); }
.btn-soft {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-soft:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-1px); }
.btn-ghost { color: var(--text-soft); }
.btn-ghost:hover { color: var(--violet); }
.btn-light { background: #fff; color: var(--violet); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
@media (prefers-color-scheme: dark) {
  .nav.scrolled { background: rgba(10, 6, 19, 0.85); }
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--text-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--violet); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.open a { padding: 12px; border-radius: 8px; width: 100%; }
  .nav-links.open a:hover { background: var(--border-soft); }
  .nav-cta-mobile { display: inline-flex; margin-top: 8px; }
}

/* ===== HERO ===== */
.hero { padding: 140px 0 0; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 65%);
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub { font-size: clamp(17px, 2.2vw, 22px); color: var(--text-soft); max-width: 680px; margin: 0 auto 36px; }
.hero-sub strong { color: var(--violet); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--text-soft); }
.hero-trust svg { color: var(--emerald); }

/* ===== MOCKUP ===== */
.hero-mockup { margin-top: 64px; padding-bottom: 0; position: relative; z-index: 1; }
.mock-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.mock-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.mock-url {
  margin-left: 12px;
  padding: 5px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 12px; color: var(--text-muted);
  font-family: ui-monospace, monospace;
}
.mock-body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-stat { padding: 14px; background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 12px; }
.mock-stat-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 8px; }
.mock-stat-icon.blue { background: rgba(59,130,246,0.12); color: var(--blue); }
.mock-stat-icon.green { background: rgba(16,185,129,0.12); color: var(--emerald); }
.mock-stat-icon.violet { background: rgba(139,92,246,0.12); color: var(--violet-light); }
.mock-stat-icon.amber { background: rgba(245,158,11,0.12); color: var(--amber); }
.mock-stat-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mock-stat-value { font-size: 16px; font-weight: 700; margin-top: 2px; }
.mock-timeline { display: flex; flex-direction: column; gap: 8px; }
.mock-tl-row { display: flex; align-items: center; gap: 12px; }
.mock-tl-time { font-size: 12px; font-weight: 700; color: var(--text-muted); width: 40px; text-align: right; font-family: ui-monospace, monospace; }
.mock-tl-card { flex: 1; padding: 10px 14px; border-left: 3px solid; border-radius: 8px; background: var(--bg-soft); }
.mock-tl-card strong { display: block; font-size: 13px; }
.mock-tl-card span { font-size: 11px; color: var(--text-muted); }

@media (max-width: 700px) {
  .mock-body { grid-template-columns: 1fr; }
}

/* ===== STATS BAR ===== */
.stats-bar { padding: 56px 0; background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { position: relative; }
.stat-num {
  display: inline; font-size: clamp(36px, 5vw, 52px); font-weight: 800;
  background: linear-gradient(120deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  background: linear-gradient(120deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-desc { margin-top: 6px; font-size: 14px; color: var(--text-soft); max-width: 220px; margin-left: auto; margin-right: auto; }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
}

/* ===== LOGO CLOUD ===== */
.logo-cloud { padding: 56px 0; text-align: center; }
.logo-cloud-title { font-size: 14px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.logo-cloud-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lc-item {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  transition: all 0.2s;
}
.lc-item:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }

/* ===== BENTO GRID ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--violet-light); }
.bento-lg { grid-column: span 2; grid-row: span 2; padding: 36px; }
.bento-md { grid-column: span 2; }
.bento-emoji { font-size: 40px; margin-bottom: 16px; }
.bento-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.bento-lg h3 { font-size: 26px; }
.bento-card p { color: var(--text-soft); font-size: 15px; line-height: 1.6; }
.bento-lg p { font-size: 17px; }
.bento-highlight {
  margin-top: 20px; padding: 14px 18px;
  background: linear-gradient(120deg, rgba(109,40,217,0.08), rgba(139,92,246,0.08));
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bento-tag { font-size: 12px; font-weight: 700; color: var(--violet); text-transform: uppercase; letter-spacing: 0.05em; }
.bento-highlight strong { font-size: 18px; color: var(--text); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-md { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-md { grid-column: span 1; }
}

/* ===== COMO FUNCIONA ===== */
.how { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(120deg, var(--violet), var(--violet-light));
  color: #fff; font-weight: 800; font-size: 16px;
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.4);
}
.step-icon {
  width: 64px; height: 64px; margin: 8px auto 18px;
  border-radius: 18px;
  background: rgba(109, 40, 217, 0.08);
  color: var(--violet);
  display: grid; place-items: center;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 15px; }

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ===== COMPARE ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.compare-col { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-bad { background: rgba(239, 68, 68, 0.04); border-color: rgba(239, 68, 68, 0.15); }
.compare-good { background: rgba(16, 185, 129, 0.04); border-color: rgba(16, 185, 129, 0.15); }
.compare-col h3 { font-size: 18px; margin-bottom: 18px; }
.compare-col ul li { padding: 10px 0; border-bottom: 1px solid var(--border-soft); color: var(--text-soft); font-size: 15px; }
.compare-col ul li:last-child { border-bottom: 0; }
.compare-bad ul li::before { content: "✗  "; color: #ef4444; font-weight: 700; }
.compare-good ul li::before { content: "✓  "; color: var(--emerald); font-weight: 700; }

@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

/* ===== DEPOIMENTOS ===== */
.testimonials { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 18px; }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 15px; display: grid; place-items: center; }
.testi-card figcaption strong { display: block; font-size: 14px; }
.testi-card figcaption span { font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-featured {
  border-color: var(--violet);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.03), var(--bg-card) 30%);
}
.price-featured::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.4), transparent 30%);
  z-index: -1; filter: blur(20px); opacity: 0.5;
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--violet), var(--violet-light));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.4);
  white-space: nowrap;
}
.price-head h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.price-head p { font-size: 14px; color: var(--text-soft); min-height: 42px; }
.price-amount { margin: 24px 0; display: flex; align-items: baseline; gap: 2px; }
.price-amount .currency { font-size: 22px; font-weight: 700; color: var(--text-soft); }
.price-amount .value { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-amount .period { font-size: 16px; color: var(--text-soft); font-weight: 500; margin-left: 4px; }
.value-enterprise { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.price-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-soft); }
.price-features li::before {
  content: ""; flex-shrink: 0; margin-top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16, 185, 129, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}
.price-features li strong { color: var(--text); font-weight: 700; }
.pricing-note {
  text-align: center; margin-top: 40px; padding: 16px 24px;
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px; color: var(--text-soft); font-size: 15px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.pricing-note strong { color: var(--amber); }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--violet-light); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 300; color: var(--violet);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-soft); font-size: 15px; line-height: 1.65; }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1e0a3c 0%, #4c1d95 50%, #6d28d9 100%);
  color: #fff;
  text-align: center;
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.cta-final p { font-size: 18px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 20px; }
.cta-sub { font-size: 14px; color: rgba(255, 255, 255, 0.65); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-soft); font-size: 14px; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.footer-col a { display: block; font-size: 14px; color: var(--text-soft); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: 13px; color: var(--text-muted); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMAÇÕES ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE FINE-TUNE ===== */
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero { padding: 110px 0 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; width: 100%; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
}
