/* Sabido - Landing Épica para Sócios */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand-1: #2eaeb2;
  --brand-2: #40cc9f;
  --brand-3: #2bb2ad;
  --brand-contrast: #ffffff;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #c8d2dd;
  --surface: #f8fafc;

  /* Gradientes */
  --grad: linear-gradient(135deg, var(--brand-1), var(--brand-2)); /* alias legado */
  --grad-brand: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  --grad-hero: linear-gradient(
    135deg,
    rgba(64, 204, 159, 0.3),
    rgba(46, 174, 178, 0.3) 45%,
    rgba(31, 120, 209, 0.26) 100%
  );
  --grad-danger: linear-gradient(135deg, #ef4444, #dc2626);
  --grad-secondary: linear-gradient(135deg, #f1f5f9, #e2e8f0);

  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --s-1: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.06);
  --s-2: 0 6px 18px rgba(15, 23, 42, 0.08), 0 18px 46px rgba(15, 23, 42, 0.1);
  --s-3: 0 18px 60px rgba(15, 23, 42, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo Hero */
.logo-hero {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 24px;
  margin-bottom: 64px;
  animation: fadeInDown 1s var(--ease);
}

.logo-hero svg {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(46, 174, 178, 0.3));
  animation: float 3s ease-in-out infinite;
}

.brand-name {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1ba164 0%, #22c47b 30%, #31abb6 60%, #31568b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Épico */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 120px;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46, 174, 178, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(64, 204, 159, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-content .subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 48px;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.stat {
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(46, 174, 178, 0.1);
  transition: all 0.4s var(--ease);
}

.stat:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--s-3);
  border-color: var(--brand-1);
}

.stat[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 600;
}

/* Visual Hero */
.hero-visual {
  position: relative;
  height: 600px;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--s-3);
  border: 1px solid var(--line);
  animation: float 6s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.floating-card.interactive-card {
  position: absolute;
}

.floating-card.interactive-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(46, 174, 178, 0.25);
  border-color: var(--brand-1);
}

.floating-card.interactive-card .tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-card.interactive-card .tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ink);
}

.floating-card:nth-child(1) {
  top: 0;
  right: 0;
  width: 280px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 200px;
  left: 0;
  width: 240px;
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  bottom: 0;
  right: 60px;
  width: 260px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22c47b 0%, #31abb6 50%, #2eaeb2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(46, 174, 178, 0.2);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-value {
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #22c47b 0%, #2eaeb2 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 174, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46, 174, 178, 0.4);
  background: linear-gradient(135deg, #1ba164 0%, #2eaeb2 100%);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand-1);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 120px 0;
  position: relative;
  opacity: 1;
}

/* Seção com background surface - precisa vir antes do seletor genérico */
section[style*="background: var(--surface)"] {
  background: var(--surface) !important;
  z-index: 2;
  position: relative;
  margin-top: 0;
  padding-top: 120px;
}

section:not(.hero) {
  background: #fff;
  z-index: 2;
  position: relative;
  margin-top: 0;
}

/* Garantir que a primeira seção após o hero não seja cortada */
section:not(.hero):first-of-type {
  margin-top: 0;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.hero {
  transition: opacity 1s ease;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  opacity: 1;
  visibility: visible;
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(46, 174, 178, 0.1);
  color: var(--brand-1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-3);
  border-color: transparent;
}

.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c47b 0%, #31abb6 50%, #2eaeb2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(46, 174, 178, 0.2);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 16px;
}

/* Status Section */
.status-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.status-card {
  background: #fff;
  border-radius: 32px;
  padding: 48px;
  border: 2px solid var(--line);
  position: relative;
  overflow: hidden;
}

.status-card.completed {
  border-color: var(--brand-1);
  background: linear-gradient(135deg, rgba(46, 174, 178, 0.03), rgba(64, 204, 159, 0.03));
}

.status-card.pending {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(251, 191, 36, 0.03));
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.status-header h3 {
  font-size: 32px;
  font-weight: 900;
}

.status-badge {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.status-badge.success {
  background: rgba(46, 174, 178, 0.15);
  color: var(--brand-1);
}

.status-badge.warning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.progress-bar {
  height: 12px;
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 32px;
}

.progress-fill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: 999px;
  transition: width 1.5s var(--ease);
}

.status-list {
  list-style: none;
}

.status-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-2);
}

.status-list li:last-child {
  border-bottom: none;
}

/* Timeline */
.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-1), var(--brand-2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c47b 0%, #31abb6 50%, #2eaeb2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 174, 178, 0.3);
  z-index: 1;
}

.timeline-content {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: var(--s-2);
}

.timeline-item[data-animate] {
  opacity: 0;
  transform: translateX(-30px);
}

.timeline-item[data-animate].animated {
  opacity: 1;
  transform: translateX(0);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.timeline-duration {
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-1);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* Financial Cards */
.financials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.financial-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.financial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-3);
}

.financial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.financial-card.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.financial-card.highlight {
  background: linear-gradient(135deg, rgba(46, 174, 178, 0.05), rgba(64, 204, 159, 0.05));
  border-color: var(--brand-1);
}

.financial-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.financial-value {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.financial-card p {
  color: var(--ink-2);
  font-size: 14px;
}

/* CTA Section */
.cta {
  background: var(--grad-brand);
  color: #fff;
  text-align: center;
  border-radius: 48px;
  padding: 80px 40px;
  margin: 0 40px;
  box-shadow: 0 20px 60px rgba(46, 174, 178, 0.3);
}

.cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta p {
  font-size: 24px;
  opacity: 0.95;
  margin-bottom: 48px;
}

.cta .btn-primary {
  background: #fff;
  color: var(--brand-1);
}

.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    height: 400px;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
  .financials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  section {
    padding: 80px 0;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .financials-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  .btn-group {
    flex-direction: column;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s var(--ease) forwards;
}

html {
  scroll-behavior: smooth;
}

/* Animações de entrada melhoradas */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Efeito de brilho removido */

/* Integrations Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.integration-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.integration-card.critical::before {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.integration-card.important::before {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.integration-card:hover::before {
  transform: scaleX(1);
}

.integration-card.animated:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-3);
  border-color: transparent;
}

.integration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.integration-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 174, 178, 0.2);
}

.integration-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.integration-badge {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integration-badge.critical {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.integration-badge.important {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.integration-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.integration-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-1);
  margin-bottom: 20px;
}

.integration-details {
  list-style: none;
  margin-bottom: 20px;
}

.integration-details li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.integration-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-1);
  font-weight: 700;
}

.integration-impact {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-left: 4px solid var(--brand-1);
}

.integration-impact strong {
  color: var(--ink);
}

/* Next Steps Grid */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.step-card.animated:hover {
  transform: translateY(-8px) scale(1);
  box-shadow: var(--s-3);
  border-color: var(--brand-1);
}

.step-number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--grad-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 174, 178, 0.3);
}

.step-card.phase-1 .step-number {
  background: linear-gradient(135deg, #22c47b, #2eaeb2);
}

.step-card.phase-2 .step-number {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-card.phase-3 .step-number {
  background: linear-gradient(135deg, #10b981, #059669);
}

.step-card.phase-4 .step-number {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-card.phase-5 .step-number {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-card.phase-6 .step-number {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.step-duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-1);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-tasks {
  margin-bottom: 20px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-2);
  font-size: 15px;
}

.task-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-1);
  flex-shrink: 0;
}

.task-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.step-owner {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.step-owner strong {
  color: var(--ink);
}

/* Responsive */
@media (max-width: 1024px) {
  .integrations-grid,
  .next-steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .integrations-grid,
  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    flex-direction: column;
  }

  .step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 24px;
  }
}

/* Organograma */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
}

.org-level {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.org-level.level-1 {
  margin-bottom: 24px;
}

.org-level.level-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.org-level.level-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.org-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--line);
  text-align: center;
  transition: all 0.4s var(--ease);
  min-width: 220px;
  width: 100%;
  max-width: 280px;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  margin: 0 auto;
}

.org-card.animated:hover {
  transform: translateY(-8px) scale(1);
  box-shadow: var(--s-3);
  border-color: var(--brand-1);
}

.org-card.founder {
  border-color: var(--brand-1);
  background: linear-gradient(135deg, rgba(46, 174, 178, 0.05), rgba(64, 204, 159, 0.05));
}

.org-card.cto,
.org-card.cfo,
.org-card.cmo,
.org-card.cco,
.org-card.coo {
  border-color: var(--brand-2);
}

.org-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  border: 4px solid var(--line);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.org-card.founder .org-avatar-img {
  width: 140px;
  height: 140px;
  border: 4px solid var(--brand-1);
  box-shadow: 0 8px 24px rgba(46, 174, 178, 0.3);
}

.org-card:hover .org-avatar-img {
  border-color: var(--brand-1);
  transform: scale(1.05);
}

.org-card.founder:hover .org-avatar-img {
  border-color: var(--brand-1);
  box-shadow: 0 8px 24px rgba(46, 174, 178, 0.4);
}

/* Avatar SVG para nível 3 (sem imagens ainda) */
.org-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 174, 178, 0.3);
}

.org-avatar svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
}

.org-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.org-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.org-role {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Linhas conectando níveis - removidas para simplificar visual */

/* Responsive Organograma */
@media (max-width: 768px) {
  .org-level {
    flex-direction: column;
    align-items: center;
  }

  .org-card {
    min-width: 100%;
    max-width: 100%;
  }

}

/* Custos Mensais */
.costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.cost-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.cost-card.fade-in-up:hover,
.cost-card.animated:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-3);
  border-color: var(--brand-1);
}

.cost-card.highlight {
  border-color: var(--brand-1);
  background: linear-gradient(135deg, rgba(46, 174, 178, 0.05), rgba(64, 204, 159, 0.05));
}

.cost-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #22c47b 0%, #31abb6 50%, #2eaeb2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.cost-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.cost-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-1);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cost-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-details li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.cost-details li:last-child {
  border-bottom: none;
}

.cost-details li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Marketing Grid */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.marketing-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.marketing-card.fade-in-up:hover,
.marketing-card.animated:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-3);
}

.marketing-phase {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 174, 178, 0.1);
  color: var(--brand-1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.marketing-card.phase-pre .marketing-phase {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
}

.marketing-card.phase-launch .marketing-phase {
  background: rgba(46, 174, 178, 0.1);
  color: var(--brand-1);
}

.marketing-card.phase-growth .marketing-phase {
  background: rgba(34, 196, 123, 0.1);
  color: #22c47b;
}

.marketing-card.phase-scale .marketing-phase {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.marketing-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.marketing-budget {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-1);
  margin-bottom: 24px;
  line-height: 1.2;
}

.marketing-tasks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.marketing-tasks li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.marketing-tasks li:last-child {
  border-bottom: none;
}

.marketing-goal {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
}

.marketing-goal strong {
  color: var(--ink);
  font-weight: 700;
}

.marketing-summary {
  margin-top: 64px;
  padding: 40px;
  background: var(--surface);
  border-radius: 24px;
  border: 2px solid var(--line);
}

.marketing-summary h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.summary-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-item span {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-1);
}

/* Timeline Date */
.timeline-date {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--brand-1);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .costs-grid,
  .marketing-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .cost-value,
  .marketing-budget {
    font-size: 24px;
  }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
