/* ============================================
   FinanServ Sul — Estilos
   Paleta: verde escuro #04342C / verde médio #0F6E56 / verde claro #E1F5EE
   Tipografia: Plus Jakarta Sans (display) + Inter (body)
   ============================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* VARIÁVEIS */
:root {
  --green-900: #04342C;
  --green-800: #085041;
  --green-700: #0F6E56;
  --green-600: #1D9E75;
  --green-100: #C0DDD0;
  --green-50:  #E1F5EE;
  --coral:     #D85A30;
  --gray-900:  #1a1a1a;
  --gray-700:  #4a4a4a;
  --gray-500:  #6b6b6b;
  --gray-300:  #d1d1d1;
  --gray-100:  #f5f5f3;
  --gray-50:   #faf9f6;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 24px rgba(4,52,44,0.06);
  --container: 1200px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--gray-700); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer .logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--green-700); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-700);
  color: white;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--green-800); }
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--green-900);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-700);
  color: white;
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover { border-color: var(--green-700); color: var(--green-700); }
.btn-large { padding: 1rem 1.75rem; font-size: 1rem; }

/* HERO */
.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, #f8fdfb 0%, var(--green-50) 40%, #f0faf5 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15,110,86,0.06) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-proof {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 0.375rem; }
.hero-proof i { color: var(--green-700); }

/* DASHBOARD MOCK */
.dashboard {
  background: linear-gradient(145deg, var(--green-900) 0%, #062e27 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: white;
  box-shadow: 0 25px 80px rgba(4,52,44,0.3), 0 0 0 1px rgba(29,158,117,0.1);
  position: relative;
  overflow: hidden;
}
.dashboard::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--green-100);
}
.dashboard-label { font-size: 0.75rem; color: var(--green-100); margin-bottom: 0.25rem; }
.dashboard-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.dashboard-trend { color: var(--green-600); font-size: 0.8125rem; margin-bottom: 1.5rem; }
.dashboard-bars {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 80px;
}
.dashboard-bar {
  flex: 1;
  background: var(--green-700);
  border-radius: 4px;
  transition: all 0.3s;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: bottom;
}
.dashboard-bar:nth-last-child(-n+2) { background: var(--green-600); }
.dashboard-bar:hover { filter: brightness(1.2); }
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* SECTIONS */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(135deg, var(--green-900) 0%, #062e27 50%, #0a4035 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(29,158,117,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(29,158,117,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.section-dark h2, .section-dark .eyebrow { color: white; }
.section-dark .eyebrow { color: var(--green-100); }
.section-dark p { color: var(--green-100); }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { font-size: 1.0625rem; margin-top: 0.75rem; }

/* PAIN POINTS */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.875rem;
}
.pain-item {
  background: white;
  padding: 1.375rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-item:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(216,90,48,0.08); border-color: rgba(216,90,48,0.2); }
.pain-icon {
  color: white;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--coral);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pain-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}
.pain-item span { font-size: 0.9375rem; color: var(--gray-900); }

/* VERTICALS (para quem atendemos) */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.vertical-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: block;
  color: inherit;
}
.vertical-card:hover {
  border-color: var(--green-700);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.vertical-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-50) 0%, #c8ede0 100%);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.vertical-icon i {
  font-size: 1.75rem;
  line-height: 1;
  display: inline-block;
}
.vertical-icon i::before {
  font-size: 1.75rem;
}
.vertical-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-700);
  flex-shrink: 0;
  transition: stroke 0.3s;
}
.vertical-card:hover .vertical-icon svg {
  stroke: white;
}
.vertical-card:hover .vertical-icon {
  background: var(--green-700);
  color: white;
  transform: scale(1.05);
}
.vertical-card h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.vertical-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.vertical-link {
  font-size: 0.8125rem;
  color: var(--green-700);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.875rem;
}
.service-item {
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--green-700);
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.service-item:hover { background: var(--green-50); border-left-color: var(--green-600); transform: translateX(4px); }
.service-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.service-item p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* STATS (5 motivos) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
}
.stat-value i { font-size: 2.5rem; color: var(--green-600); }
.stat-label { font-size: 0.8125rem; color: var(--green-100); line-height: 1.5; }

/* STEPS (como começar) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: white;
  position: relative;
  transition: all 0.3s;
}
.step:hover { border-color: var(--green-700); transform: translateY(-2px); }
.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(15,110,86,0.25);
}
.step h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.step p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] { border-color: var(--green-700); }
.faq-item summary {
  padding: 1.125rem 1.375rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--green-900);
  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: 1.5rem;
  color: var(--green-700);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content {
  padding: 0 1.375rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final h2 { color: white; max-width: 700px; margin: 0 auto 0.75rem; }
.cta-final p { color: var(--green-100); margin-bottom: 1.75rem; font-size: 1.0625rem; }
.cta-final .btn-primary {
  background: white;
  color: var(--green-700);
}
.cta-final .btn-primary:hover { background: var(--green-50); }

/* FOOTER */
.footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: white;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer a {
  font-size: 0.875rem;
  color: var(--green-100);
  transition: color 0.2s;
}
.footer a:hover { color: white; }
.footer-about p { color: var(--green-100); font-size: 0.875rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--green-800);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--green-700); border-color: var(--green-700); color: white; }
.footer-bottom {
  border-top: 1px solid var(--green-800);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--green-100);
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* PÁGINAS INTERNAS */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f8fdfb 0%, var(--green-50) 50%, #f0faf5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29,158,117,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--green-700); }
.page-hero h1 { max-width: 800px; margin: 0 auto 1rem; }
.page-hero .lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.content-section { padding: 3rem 0; }
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.content-narrow h2 { margin: 2.5rem 0 1rem; }
.content-narrow h3 { margin: 2rem 0 0.75rem; font-size: 1.125rem; }
.content-narrow p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; }
.content-narrow ul { margin: 1rem 0 1.5rem 1.25rem; }
.content-narrow ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}
.content-narrow strong { color: var(--green-900); }

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { padding-top: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-channel-info h3 { font-size: 0.875rem; margin-bottom: 0.125rem; }
.contact-channel-info p { font-size: 0.9375rem; color: var(--green-700); margin: 0; font-weight: 500; }

.form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 0.375rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  background: white;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-700);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1rem; flex: 1; }
.blog-card-link {
  font-size: 0.8125rem;
  color: var(--green-700);
  font-weight: 500;
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.article-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.article h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; }
.article > p:first-of-type {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.article p { margin-bottom: 1.25rem; line-height: 1.75; }
.article h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.article h3 { margin: 2rem 0 0.75rem; font-size: 1.1875rem; }
.article ul, .article ol { margin: 1rem 0 1.5rem 1.5rem; }
.article ul li { list-style: disc; margin-bottom: 0.5rem; }
.article ol li { list-style: decimal; margin-bottom: 0.5rem; }
.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { margin-bottom: 0.5rem; }
.article-cta p { margin-bottom: 1.25rem; }

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    gap: 1rem;
  }
  .section { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero h1 { font-size: 1.875rem; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero h1, .hero-lead, .hero-ctas, .hero-proof {
  animation: fadeUp 0.6s ease-out backwards;
}
.hero h1     { animation-delay: 0.1s; }
.hero-lead   { animation-delay: 0.2s; }
.hero-ctas   { animation-delay: 0.3s; }
.hero-proof  { animation-delay: 0.4s; }
.dashboard   { animation: fadeUp 0.8s ease-out 0.3s backwards; }
