/* =================================================
   Crescer+ Landing Page — Styles
   ================================================= */

:root {
  --brand: #2ECC71;
  --brand-d: #27AE60;
  --brand-light: #E8F7EF;
  --brand-50: #F0FAF4;
  --blue: #2563A8;
  --blue-d: #0C3B6E;
  --blue-light: #E8F0F7;
  --amber: #F5A623;
  --amber-light: #FEF0D7;
  --dark: #0F1117;
  --dark-2: #1A1D27;
  --offwhite: #F8FAF9;
  --soft: #F3F6F4;
  --ink: #1A2633;
  --ink-2: #4B5563;
  --muted: #6B7280;
  --line: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(15,17,23,0.06);
  --shadow-md: 0 4px 24px rgba(30,140,82,0.12);
  --shadow-lg: 0 12px 40px rgba(15,17,23,0.12);
  --shadow-glow: 0 0 40px rgba(30,140,82,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: 'Figtree', system-ui, sans-serif; line-height: 1.15; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: 56px; font-weight: 800; }
h1 em { color: var(--brand); font-style: normal; }
h2 { font-size: 40px; font-weight: 700; }
h2 em { color: var(--brand); font-style: normal; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 700; }
p { color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin-top: 20px; max-width: 540px; }
.lead strong { color: var(--ink); font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .lead { font-size: 17px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 17px; border-radius: 14px; }
.btn-xl { padding: 20px 36px; font-size: 19px; border-radius: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #1E8C52, #16A363);
  color: white;
  box-shadow: 0 6px 20px rgba(30,140,82,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(30,140,82,0.45); }

.btn-amber {
  background: linear-gradient(135deg, #F5A623, #E08A00);
  color: white;
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  animation: pulse 3s ease-in-out infinite;
}
.btn-amber:hover { box-shadow: 0 10px 32px rgba(245,166,35,0.65); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,166,35,0.5); }
  50% { box-shadow: 0 6px 32px rgba(245,166,35,0.85); }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--soft); border-color: var(--brand); color: var(--brand); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,249,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span:first-child {
  background: linear-gradient(90deg, #1F4E79, #2E6FA3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .logo-plus { color: var(--brand); -webkit-text-fill-color: var(--brand); }
.logo-leaf { align-self: flex-start; margin-top: -4px; flex-shrink: 0; }
.footer-logo span:first-child {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255,255,255,0.95);
  background-clip: unset;
}
.footer-logo .logo-plus { color: rgba(255,255,255,0.9); -webkit-text-fill-color: rgba(255,255,255,0.9); }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  padding: 12px 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--soft);
}
.nav-mobile a.btn { margin-top: 10px; border: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(30,140,82,0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 70%, rgba(245,166,35,0.10), transparent 60%),
    var(--offwhite);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  margin-bottom: 20px;
  white-space: nowrap;
}
.eyebrow.gray { background: var(--soft); color: var(--muted); }
.eyebrow.amber { background: rgba(245,166,35,0.15); color: var(--amber); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(30,140,82,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  50% { box-shadow: 0 0 0 8px rgba(30,140,82,0); }
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.social-proof strong { color: var(--ink); font-weight: 700; }
.stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
}
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.stars.sm { font-size: 16px; line-height: 1; }

/* ===== HERO VISUAL — phones ===== */
.hero-visual {
  position: relative;
  height: 580px;
}
.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(15,17,23,0.25), 0 0 0 2px #2a2a2a;
}
.phone-back {
  position: absolute;
  top: 20px; right: 20px;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.95;
}
.phone-front {
  position: absolute;
  top: 60px; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.phone-static { transform: none; position: relative; margin: 0 auto; }
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #F3F3FB;
}
.phone-parent { background: var(--blue-light); }
.phone-kid { background: var(--brand-light); }

/* phone — status bar */
.ph-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  color: var(--ink);
}
.ph-statusbar.light { color: white; position: relative; z-index: 5; }

/* phone — appbar (parent) */
.ph-appbar {
  background: linear-gradient(180deg, #2563A8, #0C3B6E);
  color: white;
  padding: 14px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ph-appbar-title small {
  display: block;
  font-size: 10px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ph-appbar-title strong {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: block;
}
.ph-bell {
  position: relative;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.ph-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: #DC2626;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
}

/* phone — kid hero */
.ph-hero {
  background: linear-gradient(160deg, #25C76E, #178C4A);
  color: white;
  padding: 22px 18px 18px;
  position: relative;
  overflow: hidden;
}
.ph-hero-bubbles::before, .ph-hero-bubbles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.ph-hero-bubbles::before { width: 80px; height: 80px; top: -20px; right: -10px; }
.ph-hero-bubbles::after { width: 50px; height: 50px; bottom: -15px; left: 60%; }
.ph-hero-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 12px;
}
.ph-mascot {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ph-greet { font-size: 11px; font-weight: 600; opacity: 0.9; font-family: 'Inter', sans-serif; }
.ph-greet-name { font-family: 'Figtree', sans-serif; font-size: 18px; font-weight: 700; }
.ph-chips { display: flex; gap: 6px; margin-bottom: 10px; position: relative; }
.ph-chip {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
}
.ph-chip-fire { background: rgba(245,166,35,0.4); border-color: rgba(245,166,35,0.6); }
.ph-xp { position: relative; }
.ph-xp-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 4px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  opacity: 0.9;
}
.ph-xp-bar {
  height: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  overflow: hidden;
}
.ph-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, #F9C173, #F7B150);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(245,166,35,0.6);
}

.ph-time-big {
  font-family: 'Figtree', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 4px 0 12px;
  line-height: 1;
}

/* phone — generic card */
.ph-card {
  background: white;
  margin: 14px;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ph-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ph-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.ph-avatar.sm { width: 32px; height: 32px; font-size: 13px; }
.avatar-purple { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.avatar-blue   { background: linear-gradient(135deg, #60A5FA, #2563A8); }
.avatar-amber  { background: linear-gradient(135deg, #F9C173, #F5A623); }
.ph-name { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; }
.ph-meta { font-size: 11px; color: var(--muted); }
.ph-meta.success { color: var(--brand); font-weight: 600; }
.ph-tag {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
}
.tag-amber { background: var(--amber-light); color: #B45309; }
.ph-photo {
  height: 90px;
  background: linear-gradient(135deg, #E8F7EF, #C5EDD7);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  position: relative;
}
.ph-photo-emoji { font-size: 40px; }
.ph-photo-label {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 9px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
}
.ph-task-title { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.ph-actions { display: flex; gap: 6px; }
.ph-btn {
  flex: 1;
  padding: 9px;
  border-radius: 10px;
  border: 0;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.ph-btn-ghost { background: var(--soft); color: var(--ink-2); }
.ph-btn-primary {
  flex: 1.4;
  background: linear-gradient(135deg, #1E8C52, #16A363);
  color: white;
}

/* phone — kid status card */
.ph-status-card {
  margin: 14px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FEF0D7, #F9C173);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-status-icon { font-size: 24px; }
.ph-status-title { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; }
.ph-status-sub { font-size: 11px; color: var(--ink-2); }

/* phone — task row */
.ph-task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  margin: 8px 14px;
  padding: 10px;
  border-radius: 12px;
}
.ph-task-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ph-task-info { flex: 1; }
.ph-task-name { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 13px; }
.ph-task-xp { font-size: 11px; color: var(--brand); font-weight: 600; }
.ph-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

/* phone — map */
.ph-map { position: relative; width: 100%; height: 100%; }
.ph-pin {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -100%);
}
.ph-pin-circle {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1E8C52, #16A363);
  border: 3px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.ph-pin::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #16A363;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
}
.ph-map-card {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: white;
  padding: 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* phone — aura section */
.ph-hero-aura {
  background: linear-gradient(160deg, #F5A623, #B45309);
  text-align: center;
  padding: 24px 18px;
}
.ph-mascot-big {
  margin: 0 auto 8px;
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ph-tier {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
}
.ph-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
}
.ph-stat {
  background: white;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
}
.ph-stat-num { font-family: 'Figtree', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); }
.ph-stat-lbl { font-size: 10px; color: var(--muted); }

.ph-mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 14px; }
.ph-mini-stat { background: white; padding: 8px; border-radius: 10px; text-align: center; }
.ph-mini-num { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; color: var(--brand); }
.ph-mini-lbl { font-size: 10px; color: var(--muted); }

/* phone — school */
.school-card { padding: 12px; margin-bottom: 10px; }
.school-card.urgent { border-left: 3px solid #DC2626; }
.ph-progress-bar { height: 6px; background: var(--line); border-radius: 999px; margin-top: 8px; overflow: hidden; }
.ph-progress-fill { height: 100%; background: var(--brand); border-radius: 999px; }
.ph-progress-fill.urgent { background: #DC2626; }
.ph-blocked {
  margin: 0 14px;
  padding: 10px;
  background: rgba(220,38,38,0.08);
  border-radius: 10px;
  font-size: 12px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  color: #DC2626;
  text-align: center;
}

/* floating badges */
.float-badge {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}
.float-badge-xp { top: 8%; left: -8px; }
.float-badge-shield { bottom: 14%; right: -10px; animation-delay: 1.5s; }
.fb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--amber-light);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.float-badge-shield .fb-icon { background: var(--brand-light); }
.fb-title { font-family: 'Figtree', sans-serif; font-weight: 800; font-size: 14px; color: var(--ink); }
.fb-sub { font-size: 11px; color: var(--muted); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 500px; max-width: 480px; margin: 0 auto; }
  .float-badge-xp { left: -4px; }
  .float-badge-shield { right: -4px; }
}
@media (max-width: 480px) {
  .phone { width: 220px; height: 440px; }
  .phone-back { top: 12px; right: 8px; }
  .phone-front { top: 40px; left: 0; }
  .hero-visual { height: 460px; }
  .float-badge { padding: 10px 12px; font-size: 12px; }
  .float-badge-xp { left: -10px; top: 4%; }
  .float-badge-shield { right: -12px; bottom: 6%; }
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; }
.section-light { background: var(--offwhite); }
.section-soft { background: var(--soft); }
.section-dark { background: var(--dark); color: white; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.lead-dark { color: rgba(255,255,255,0.75); font-size: 19px; max-width: 580px; }
.hero-title { font-size: 48px; }
.hero-title em { color: var(--amber); font-style: normal; }

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-title { font-size: 32px; }
}

/* ============ PROBLEMA ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .problem-grid:has(.problem-card:nth-child(5)) {
    grid-template-columns: repeat(6, 1fr);
  }
  .problem-grid:has(.problem-card:nth-child(5)) .problem-card:nth-child(1),
  .problem-grid:has(.problem-card:nth-child(5)) .problem-card:nth-child(2),
  .problem-grid:has(.problem-card:nth-child(5)) .problem-card:nth-child(3) {
    grid-column: span 2;
  }
  .problem-grid:has(.problem-card:nth-child(5)) .problem-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  .problem-grid:has(.problem-card:nth-child(5)) .problem-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}
.problem-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-emoji { font-size: 40px; margin-bottom: 16px; }
.problem-card h3 { font-size: 20px; margin-bottom: 10px; }
.problem-card p { font-size: 15px; }
.problem-card p strong { color: var(--ink); font-weight: 600; }
.problem-empathy {
  text-align: center;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ SOLUÇÃO / CICLO ============ */
.cycle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 50px 0 30px;
  flex-wrap: wrap;
}
.cycle-step {
  flex: 0 0 160px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  position: relative;
}
.cycle-step.highlight {
  background: linear-gradient(135deg, rgba(30,140,82,0.25), rgba(245,166,35,0.18));
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 0 32px rgba(245,166,35,0.2);
}
.cycle-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.cycle-step.highlight .cycle-num { background: var(--amber); }
.cycle-emoji { font-size: 36px; margin-bottom: 12px; }
.cycle-step h4 { color: white; font-size: 16px; margin-bottom: 4px; }
.cycle-step p { font-size: 13px; color: rgba(255,255,255,0.65); }
.cycle-arrow { font-size: 24px; color: var(--amber); font-weight: 700; }
.closing { text-align: center; font-size: 18px; color: rgba(255,255,255,0.85); margin-top: 30px; }
.closing strong { color: var(--amber); font-weight: 700; }
@media (max-width: 768px) {
  .cycle-arrow { transform: rotate(90deg); }
}

/* ============ FUNCIONALIDADES ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-visual { order: 1; }
.feature:last-child { margin-bottom: 0; }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-light), #C5EDD7);
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-text h3 { font-size: 30px; line-height: 1.2; margin-bottom: 16px; }
.feature-text p { font-size: 16.5px; }
.feature-text p strong { color: var(--ink); font-weight: 600; }
.feature-bullets {
  list-style: none;
  margin-top: 20px;
}
.feature-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--ink-2);
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--brand-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E8C52' stroke-width='3' stroke-linecap='round'><polyline points='4 12 10 18 20 7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-visual {
  display: grid;
  place-items: center;
}
.feature-visual .phone-static {
  width: 280px; height: 540px;
  transition: transform 0.3s;
}
.feature-visual .phone-static:hover { transform: translateY(-6px) rotate(-1deg); }
@media (max-width: 880px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
  }
  .feature.reverse .feature-text { order: 1; }
  .feature.reverse .feature-visual { order: 2; }
  .feature-text h3 { font-size: 24px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 14px 0 24px;
  color: var(--ink);
}
.testimonial p strong { color: var(--brand); font-weight: 600; }
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
}
.t-name { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; }
.t-meta { font-size: 12px; color: var(--muted); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-big .stat-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-big .stat-lbl { font-size: 14px; color: var(--ink-2); }
@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 28px; padding: 30px; }
  .stat-big .stat-num { font-size: 32px; }
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}
.step {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-d));
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(30,140,82,0.4);
}
.step-icon { font-size: 44px; margin: 16px 0 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ PLANOS ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.plan {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
}
.plan-pro {
  background: linear-gradient(180deg, white, #f4fbf6);
  border: 2px solid var(--brand);
  box-shadow: 0 12px 40px rgba(30,140,82,0.18);
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #E08A00);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}
.plan-header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.plan h3 { font-size: 22px; margin-bottom: 14px; }
.plan-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.plan-currency { font-family: 'Figtree', sans-serif; font-weight: 600; color: var(--muted); font-size: 18px; }
.plan-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-pro .plan-num { color: var(--brand); }
.plan-per { font-family: 'Figtree', sans-serif; font-weight: 600; color: var(--muted); font-size: 16px; }
.plan-desc { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.plan-list {
  list-style: none;
  margin-bottom: 28px;
}
.plan-list li {
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  position: relative;
  color: var(--ink);
}
.plan-list li.ok::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 18px;
  background: var(--brand-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E8C52' stroke-width='3' stroke-linecap='round'><polyline points='4 12 10 18 20 7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan-list li.no { color: var(--muted); }
.plan-list li.no::before {
  content: '×';
  position: absolute;
  left: 4px; top: 6px;
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
}
.anchor {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: var(--ink-2);
  font-style: italic;
}
@media (max-width: 768px) {
  .plans { grid-template-columns: 1fr; }
  .plan-pro { transform: none; }
}

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============ CTA FINAL ============ */
.section-cta {
  position: relative;
  padding: 120px 0;
  color: white;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,140,82,0.45), transparent 70%),
    linear-gradient(180deg, var(--dark), #050810);
  z-index: -1;
}
.cta-title { color: white; }
.cta-lead { margin: 24px auto 0; }
.section-cta .btn-amber { margin-top: 36px; }
.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
}
.dot-sep { opacity: 0.4; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-2);
  color: white;
  padding: 50px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 36px;
}
.footer-logo { color: white; }
.footer-logo span { color: white; }
.footer-tag { color: rgba(255,255,255,0.55); font-size: 13.5px; margin-top: 10px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--brand); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-links, .footer-social { justify-content: center; }
}

/* ============ BETA BADGE ============ */
.badge-beta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-d));
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ============ TRUST / SEGURANÇA ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.trust-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.trust-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
}
.trust-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-amber, .float-badge, .eyebrow .dot { animation: none; }
}
