.services-cards .card { 
  height: 276px; 
  display: flex; 
  flex-direction: column; 
  align-items: stretch;
}

.services-cards .card-icon { 
  width: 44px; 
  height: 44px; 
  display: grid; 
  place-items: center; 
  background: rgba(79,91,255,.15); 
  color: white; 
  border-radius: 12px; 
  margin-bottom: 10px; 
  border: 1px solid rgba(79,91,255,.4); 
  flex-shrink: 0; 
}
.services-cards .card p { margin-top: 8px; }

.services-cards .card-icon img { 
  width: 24px; 
  height: 24px; 
  object-fit: contain; 
  display: block; 
}
@media (max-width: 980px) { .services-cards .card { height: auto; } }


:root {
  --bg: #050710;
  --surface: #0a0d18;
  --text: #e9edf7;
  --muted: #a9b1c6;
  --primary: #4f5bff; /* electric indigo */
  --primary-2: #7a2cff; /* purple */
  --accent: #00d4ff;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Reset */
* { box-sizing: border-box; }
html { 
  height: 100%; 
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  height: 100%;
  background: #0a0d18; /* fundo contínuo e uniforme */
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  z-index: -1;
}



.container { width: min(1140px, 92%); margin: 0 auto; overflow: visible; }

/* Wider container for hero to allow title to span more width */
.hero .container { width: min(1320px, 94%); }

/* Header */
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 9999; 
  backdrop-filter: saturate(1.3) blur(10px); 
  background: rgba(5,7,16,.6); 
  border-bottom: 0;
  transition: background .3s ease, backdrop-filter .3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 700; 
  letter-spacing: .4px;
  transition: opacity .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.brand:hover { opacity: 0.85; }
.brand:active { opacity: 0.7; }
.brand-mark { width: 180px; height: auto; transition: transform .3s ease; }
.brand:hover .brand-mark { transform: scale(0.98); }
.brand-name { font-family: "Space Grotesk", Inter, sans-serif; font-weight: 700; font-size: 18px; }

.main-nav { display: flex; align-items: center; }
.nav-toggle { 
  display: none; 
  color: var(--text); 
  background: transparent; 
  border: 0; 
  padding: 10px; 
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle:active { transform: scale(0.95); }
.nav-menu { display: flex; gap: 16px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-link { 
  color: var(--text); 
  text-decoration: none; 
  padding: 10px 14px; 
  border-radius: 999px; 
  transition: background .25s ease, color .25s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover { background: var(--glass); }
.nav-link:active { transform: scale(0.97); }

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
  color: var(--text); 
  border: 1px solid var(--border); 
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); 
  padding: 12px 18px; 
  border-radius: 999px; 
  transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .2s ease, background .25s ease, box-shadow .2s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 44px; /* Touch target size */
}
.btn:hover { 
  transform: translateY(-2px); 
  border-color: rgba(255,255,255,.25); 
}
.btn:active { 
  transform: translateY(0) scale(0.98); 
  transition-duration: .1s;
}
.btn-primary { 
  border: 0; 
  background: #6E02C3; 
  box-shadow: 0 8px 20px rgba(110,2,195,.25); 
}
.btn-primary:hover { 
  background: #8A1AE0; 
  box-shadow: 0 10px 25px rgba(110,2,195,.35); 
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.24); }
.btn-small { padding: 9px 14px; font-size: 14px; min-height: 40px; }
.btn-large { padding: 16px 22px; font-size: 16px; min-height: 48px; }

/* Hero */
.hero { position: relative; min-height: 80vh; padding: clamp(10px, 2vh, 40px) 0; display: grid; place-items: start; padding-top: clamp(140px, 18vh, 180px); padding-bottom: clamp(40px, 8vh, 80px); overflow: clip; }
.hero-inner { text-align: center; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); background: var(--glass); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 999px; box-shadow: 0 0 0 6px rgba(0,212,255,.15); }
.hero-title { font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(40px, 4vw, 56px); line-height: 1.12; margin: 20px auto 30px; letter-spacing: .6px; text-shadow: 0 10px 40px rgba(122,44,255,.3); max-width: 1200px; text-wrap: balance; }
.hero-subtitle { margin: 0 auto 16px; max-width: 900px; color: var(--muted); font-size: clamp(18px, 2.6vw, 23px); }
.hero-cta { margin-top: 20px; margin-bottom: 0; display: inline-flex; gap: 12px; }
.hero-shape { display: none; }

  /* Global site background with progressive reveal */
  .site-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image: url("images/background.jpg");
    background-size: auto 200%;
    background-position: center 0%;
    background-repeat: no-repeat;
    will-change: background-position;
  }
  
  /* Global overlay for text contrast */
  .site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,7,16,0.85) 0%, rgba(5,7,16,0.75) 40%, rgba(5,7,16,0.85) 100%);
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 760px) {
    .hero { min-height: 100svh; }
    .site-bg { 
      background-size: cover;
      background-position: center center !important;
    }
  }

/* Sections */
.section { padding: 75px 0; overflow: visible; }
.hero, .section, .cta, .footer { background: transparent; }
.hero, .section { scroll-margin-top: 84px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.glass { background: rgba(10, 13, 24, 0.9); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* VSL */
.vsl-video { width: min(900px, 100%); margin: 0 auto; }
.vsl-frame { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; border-radius: var(--radius-lg); overflow: hidden; }
.vsl-title { margin: 0 auto 50px !important; font-size: clamp(28px, 4vw, 42px); font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: .6px; line-height: 1.2; position: relative; max-width: 1000px; text-align: center; display: block; }
.vsl-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -6px; width: 40%; height: 2px; background: linear-gradient(90deg, rgba(79,91,255,0), rgba(79,91,255,.45), rgba(122,44,255,.45), rgba(79,91,255,0)); filter: blur(6px); opacity: .85; pointer-events: none; border-radius: 999px; }

/* Sistema de Angariação - Steps */
.system-flow { --step-h: 330px; --step-gap: 24px; --zig-offset: calc((var(--step-h) + var(--step-gap)) / 2); }
.system-flow .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  gap: var(--step-gap);
  align-items: start;
  overflow: visible;
}
.system-flow .cards .step-card { margin-top: 0; height: var(--step-h); }
.system-flow .cards .step-card h3 { font-size: clamp(22px, 2.64vw, 26px); }
.system-flow .cards .step-card p { font-size: clamp(18px, 2.28vw, 20px); }
.system-flow .cards .step-card .step-list li { font-size: clamp(16px, 2.1vw, 19px); }
.system-flow .cards .step-card:nth-child(even) { margin-top: var(--zig-offset); }
.step-card { 
  position: relative;
  overflow: visible;
}
.step-badge { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(79,91,255,.18); border: 1px solid rgba(255,255,255,.18); font-weight: 700; }
.step-list { margin-top: 8px; }

/* Sequência de reveal progressivo nos steps */
.system-flow .cards .card[data-reveal] { will-change: opacity, transform; transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s); }
.system-flow .cards .card:nth-child(1) { --reveal-delay: .2s; }
.system-flow .cards .card:nth-child(2) { --reveal-delay: .4s; }
.system-flow .cards .card:nth-child(3) { --reveal-delay: .6s; }
.system-flow .cards .card:nth-child(4) { --reveal-delay: .8s; }
.system-flow .cards .card:nth-child(5) { --reveal-delay: 1s; }
.system-flow .cards .card:nth-child(6) { --reveal-delay: 1.2s; }

/* Animações interativas para os step-cards */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px) translateY(20px) scale(.9); }
  100% { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(60px) translateY(20px) scale(.9); }
  100% { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(60px) scale(.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Primeira step-card também anima */
.system-flow .step-card:first-child {
  opacity: 0;
}

/* Estado inicial */
.system-flow .step-card[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(.95);
  transition: none;
}

/* Ativação */
.system-flow .step-card.revealed {
  animation: var(--step-anim, slideInLeft) .8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

/* Alternar esquerda/direita */
.system-flow .cards .step-card:nth-child(odd) { --step-anim: slideInLeft; }
.system-flow .cards .step-card:nth-child(even) { --step-anim: slideInRight; }

/* Mobile: todos de baixo */
@media (max-width: 760px) {
  .system-flow .cards { grid-template-columns: 1fr; }
  .step-card { --anim: slideInUp !important; }
}

/* Estado inicial - todas as step-cards começam invisíveis */
.step-card[data-reveal] { 
  opacity: 0;
  transform: translateY(18px) scale(.95);
}

/* Quando revelado - animação inicial mais rápida */
.step-card.step-revealed, 
.step-card.revealed { 
  opacity: 1; 
  animation: var(--anim) .5s ease-out forwards; 
  animation-delay: var(--reveal-delay, 0s); 
  pointer-events: none;
  cursor: default;
}

/* Bloquear hover durante animação */
.step-card.step-revealed:not(.reveal-complete):hover,
.step-card.revealed:not(.reveal-complete):hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: initial !important;
}

/* Estado após reveal completo - preparado para hover completo */
.step-card.reveal-complete {
  animation: none !important;
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  pointer-events: auto !important;
}

/* Hover completo após reveal completo */
.step-card.reveal-complete:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(79, 91, 255, 0.4) !important;
}

/* Garantir que step-cards sem data-reveal são sempre visíveis */
.step-card:not([data-reveal]) { opacity: 1; }

/* Alternar esquerda/direita */
.step-card:nth-child(odd) { --anim: slideInLeft; }
.step-card:nth-child(even) { --anim: slideInRight; }

/* Aproximar a secção VSL ao conteúdo anterior - mantém próximo do Hero */
#vsl.section { padding: 0px 0 75px; margin-top: -100px; }

.about h2, .cta h2 { font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(30px, 3vw, 40px); margin: 6px 0 12px; max-width: 820px; line-height: 1.2; }

.services h2 { 
  font-family: "Space Grotesk", Inter, sans-serif; 
  font-size: clamp(30px, 3vw, 40px); 
  margin: 6px auto 12px; 
  max-width: 820px; 
  line-height: 1.2; 
  text-align: center;
}
.about p { color: var(--muted); }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-number { font-family: "Space Grotesk", Inter, sans-serif; font-size: 32px; letter-spacing: .4px; display: block; }
.stat-label { color: var(--muted); font-size: 14px; }

.section-title { 
  text-align: center; 
  margin: 0 0 10px; 
  display: block;
}
.section-subtitle { 
  text-align: center; 
  color: var(--muted); 
  margin: 0 0 32px; 
  font-size: 1.15em;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; overflow: visible; }
.card { 
  background: rgba(10, 13, 24, 0.9); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: var(--radius-lg); 
  padding: 26px; 
  overflow: visible; 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
}
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(79,91,255,.15); color: white; border-radius: 12px; margin-bottom: 10px; border: 1px solid rgba(79,91,255,.4); }
.card h3 { font-family: "Space Grotesk"; margin: 4px 0 8px; }
.card p { color: var(--muted); margin: 0 0 10px; }
.card-list { margin: 0; padding-left: 18px; color: var(--text); }
.card-list li { margin: 6px 0; }

/* Partner logos */
.partner-card { 
  display: flex; 
  align-items: center;
  justify-content: center;
  height: 180px; 
  background: rgba(10, 13, 24, 0.9); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: var(--radius); 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
  padding: 30px;
  /* Garantir que herda as animações do sistema unificado */
}
.partner-logo { max-width: 240px; width: 100%; height: auto; filter: grayscale(5%) contrast(110%); opacity: .95; object-fit: contain; }
.partner-logo:hover { opacity: 1; filter: none; }

/* Ajustar tamanho dos logos para ficarem uniformes */
#partners .cards .partner-card:nth-child(1) .partner-logo { max-width: 220px; }
#partners .cards .partner-card:nth-child(2) .partner-logo { max-width: 220px; }

/* Seção com espaçamento reduzido */
.section-minimal {
  padding: 20px 0 !important;
}

/* CTA */
.cta .cta-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px; 
  background: rgba(10, 13, 24, 0.9); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 24px; 
  padding: 26px; 
  box-shadow: 0 20px 60px rgba(79,91,255,.25); 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); 
}

.cta h2 {
  max-width: 800px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
}
.cta p {
  font-size: 22px; /* ajusta aqui o tamanho */
  line-height: 1.5; /* melhora legibilidade */
  color: var(--muted); /* ou var(--text) se quiseres mais contraste */
  margin-top: 8px;
  max-width: 800px;
}

.cta .cta-actions { 
  display: flex; 
  gap: 12px; 
  justify-content: flex-end; 
  flex-shrink: 0;
}

/* Footer */
.footer { padding: 48px 0; border-top: 0; background: transparent; }
.footer-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
.footer-brand img { width: 180px; height: auto; }
.footer-brand p { color: var(--muted); margin: 10px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.footer-grid h4 { margin: 0 0 8px; font-family: "Space Grotesk"; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid a { color: var(--text); text-decoration: none; opacity: .9; }
.footer-grid a:hover { opacity: 1; }
.socials { display: flex; gap: 10px; }
.copyright { grid-column: 1 / -1; margin-top: 14px; color: var(--muted); font-size: 14px; }

/* Reveal on scroll (mais lento e suave) */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 1s ease, transform 1s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* Garantir que cards revelados mantenham suas animações de hover */
[data-reveal].revealed.card,
[data-reveal].revealed.step-card,
[data-reveal].revealed.partner-card,
[data-reveal].revealed.growth-card,
.services-cards [data-reveal].revealed.card {
  pointer-events: auto;
  cursor: pointer;
}

/* Hover funciona sempre - combinado com animação de reveal */
[data-reveal].revealed.card:hover,
[data-reveal].revealed.partner-card:hover,
[data-reveal].revealed.growth-card:hover,
.services-cards [data-reveal].revealed.card:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(79, 91, 255, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Regra específica para caixas sem data-reveal (exceto step-cards) */
.card:not([data-reveal]),
.partner-card:not([data-reveal]),
.growth-card:not([data-reveal]),
.services-cards .card:not([data-reveal]) {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.card:not([data-reveal]):hover,
.partner-card:not([data-reveal]):hover,
.growth-card:not([data-reveal]):hover,
.services-cards .card:not([data-reveal]):hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(79, 91, 255, 0.4) !important;
}

/* Step-cards sem data-reveal (como onboarding) */
.step-card:not([data-reveal]) {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.step-card:not([data-reveal]):hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(79, 91, 255, 0.4) !important;
}

/* Cal.com Modal - Seamless Integration */
.cal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 7, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cal-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.cal-modal-content {
  position: relative;
  width: min(96%, 1100px);
  height: min(92vh, 720px);
  background: var(--surface);
  border: 1px solid rgba(79, 91, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(79, 91, 255, 0.1);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  opacity: 0;
}
.cal-modal.active .cal-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.cal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10001;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 13, 24, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: grid;
  place-items: center;
  padding: 0;
}
.cal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 91, 255, 0.4);
  transform: scale(1.05);
}
.cal-close:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.cal-close svg {
  width: 18px;
  height: 18px;
}
#cal-widget {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

/* Ajustes para o iframe do Cal.com parecer nativo */
#cal-widget iframe {
  border: none;
  border-radius: 24px;
}

@media (max-width: 760px) {
  .cal-modal-content {
    width: 96%;
    height: 90vh;
    border-radius: 20px;
  }
  
  .cal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  
  #cal-widget {
    border-radius: 20px;
  }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}
.whatsapp-float:active {
  transform: translateY(-2px) scale(1.02);
  transition-duration: .1s;
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform .3s ease;
}
.whatsapp-float:hover img {
  transform: scale(1.1);
}

@media (max-width: 760px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* Alinhamento dos ícones sociais */
.socials { 
  display: flex; 
  gap: 8px; 
  align-items: center;
}

.socials li {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Footer - Número de telefone não clicável */
.phone-number {
  color: var(--text);
  opacity: 0.9;
  cursor: default;
}

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive */
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .system-flow .cards { grid-template-columns: 1fr 1fr; }
  .cta .cta-inner { 
    flex-direction: column; 
    text-align: center; 
  }
  .cta .cta-actions { 
    justify-content: center; 
    margin-top: 20px; 
  }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { 
    position: absolute; 
    right: 4%; 
    top: 64px; 
    flex-direction: column; 
    gap: 10px; 
    padding: 16px; 
    background: rgba(5,7,16,.95); 
    border: 1px solid var(--border); 
    border-radius: 16px; 
    box-shadow: var(--shadow-soft); 
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
  }
  .nav-menu.open { 
    display: flex;
    animation: slideInMenu 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu .nav-link,
  .nav-menu .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .hero { padding: 100px 0 64px; }
  .hero-shape { width: 780px; right: -240px; top: -120px; }
  .cards { grid-template-columns: 1fr; }
  .system-flow .cards { grid-template-columns: 1fr; }
  .system-flow .cards .step-card { margin-top: 0 !important; }
  .step-card { --anim: slideInUp !important; }
  
  /* VSL - Melhorar espaçamento entre título e conteúdo */
  .vsl-title { 
    margin: 0 auto 40px !important; 
    padding: 0 10px;
  }
  
  /* Garantir espaçamentos consistentes nas secções */
  .section { padding: 50px 0; }
  .section-title { margin-bottom: 16px; padding: 0 10px; }
  .section-subtitle { margin-bottom: 28px; padding: 0 10px; }
  
  /* Partner logos - garantir que cabem na viewport */
  #partners .cards { 
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 100%;
  }
  
  .partner-card {
    height: 150px !important;
    min-height: 150px !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .partner-logo { 
    max-width: 70% !important; 
    width: auto !important;
    height: auto !important;
    max-height: 85px !important;
    object-fit: contain !important;
    padding: 0 !important;
  }
  
  /* Melhorar espaçamento dos ícones sociais */
  .socials { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap;
    align-items: center;
  }
  
  .socials li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }
  
  /* Footer grid mais organizado */
  .footer-grid {
    gap: 24px;
  }
  
  /* Container com melhor padding */
  .container {
    width: min(1140px, 90%);
  }
  
  /* Hero CTA com melhor espaçamento */
  .hero-cta {
    margin-top: 32px;
    margin-bottom: 60px;
  }
  
  /* VSL section com espaço extra do topo */
  #vsl.section {
    margin-top: 0 !important;
    padding-top: 40px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
  .card, .step-card, .partner-card, .growth-card, .services-cards .card { 
    transition: none; 
  }
  .card:hover, .step-card:hover, .partner-card:hover, .growth-card:hover, .services-cards .card:hover { 
    transform: none; 
    box-shadow: none;
  }
}

/* Sistema de animações unificado para todas as caixas (exceto step-cards) */
.card, 
.partner-card, 
.growth-card, 
.services-cards .card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
  will-change: transform, box-shadow, border-color;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Step-cards têm sistema próprio de animações */
.step-card {
  position: relative;
  overflow: visible;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Efeito de hover unificado - zoom in suave (exceto step-cards) */
.card:hover, 
.partner-card:hover, 
.growth-card:hover, 
.services-cards .card:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(79, 91, 255, 0.4) !important;
  z-index: 999 !important;
}

/* Animações mais suaves em dispositivos móveis (exceto step-cards) */
@media (max-width: 760px) {
  .card:hover, 
  .partner-card:hover, 
  .growth-card:hover, 
  .services-cards .card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Step-cards mobile hover apenas após reveal completo */
  .step-card.reveal-complete:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Growth card específico - usa o sistema unificado */

/* ===== CLEAN ANIMATED CHART ===== */

.simple-chart-container {
  margin-top: 40px;
  padding: 0;
  background: none;
  border: none;
}

.chart-wrapper {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.animated-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 140px;
  width: 100%;
  max-width: 400px;
  padding: 0 10px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 50px;
}

.bar-container {
  position: relative;
  width: 32px;
  height: 120px;
  background: rgba(110, 2, 195, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #6E02C3;
  border-radius: 6px;
  height: 0%;
  transition: height 1.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.bar-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* Animation States */
.chart-animated .bar-group:nth-child(1) .bar-fill { height: 14%; transition-delay: 0.2s; }
.chart-animated .bar-group:nth-child(2) .bar-fill { height: 34%; transition-delay: 0.4s; }
.chart-animated .bar-group:nth-child(3) .bar-fill { height: 51%; transition-delay: 0.6s; }
.chart-animated .bar-group:nth-child(4) .bar-fill { height: 71%; transition-delay: 0.8s; }
.chart-animated .bar-group:nth-child(5) .bar-fill { height: 91%; transition-delay: 1.0s; }
.chart-animated .bar-group:nth-child(6) .bar-fill { height: 100%; transition-delay: 1.2s; }

/* Mobile Responsiveness */
@media (max-width: 760px) {
  .chart-wrapper {
    height: 160px;
    padding: 15px;
  }
  
  .animated-bars {
    height: 120px;
    max-width: 320px;
  }
  
  .bar-container {
    width: 28px;
    height: 100px;
  }
  
  .bar-label {
    font-size: 11px;
  }
}




