@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --background: #0e0e0e;
  --foreground: #f2f2f2;
  --card: #1c1c1c;
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --primary-rgb: 34, 197, 94;
  --secondary: #262626;
  --muted: #262626;
  --muted-foreground: #737373;
  --accent: #eab308;
  --accent-dark: #ca8a04;
  --accent-rgb: 234, 179, 8;
  --border: #2e2e2e;
  --surface: #141414;
  --surface-foreground: #e6e6e6;
  --destructive: #ef4444;
  --radius: 0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(28, 28, 28, 0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(46, 46, 46, 0.5);
}
header .inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
header a { text-decoration: none; color: inherit; transition: color 0.2s; }
header a:hover { color: var(--primary); }
header .logo { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; }
header .logo span { color: var(--primary); }
header .logo .logo-img { height: 4rem; width: auto; max-width: 180px; object-fit: contain; display: block; }
header .academy { font-size: 0.75rem; color: var(--muted-foreground); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 0.25rem; }

nav.desktop { display: none; }
@media (min-width: 1024px) {
  nav.desktop { display: flex; align-items: center; gap: 2rem; }
  nav.desktop a { font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }
  nav.desktop a.active { color: var(--primary); }
}
.btn-cta {
  display: none;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050505;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }
@media (min-width: 1024px) { .btn-cta { display: inline-flex; } }

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav */
nav.mobile {
  display: block;
  background: rgba(28, 28, 28, 0.6);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
nav.mobile.hidden { display: none; }
@media (min-width: 1024px) { nav.mobile { display: none !important; } }
nav.mobile a { display: block; padding: 0.5rem 0; font-size: 0.875rem; }
nav.mobile .btn-cta { display: inline-flex; justify-content: center; margin-top: 0.5rem; width: 100%; }

/* Main */
main { padding-top: 5rem; min-height: 100vh; }

/* Utilities */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.badge-primary { color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.3); background: rgba(var(--primary-rgb), 0.05); }
.badge-accent { color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.3); background: rgba(var(--accent-rgb), 0.05); }

.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050505;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0 0 40px -10px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover { opacity: 0.9; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #050505;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0 0 40px -10px rgba(var(--accent-rgb), 0.2);
}
.btn-gold:hover { opacity: 0.9; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--foreground);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--secondary); }

/* Sections */
section { padding: 4rem 0; }
section.bg-surface { background: var(--surface); }
section.bg-gradient-dark { background: linear-gradient(180deg, var(--background), var(--surface)); }
section.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.border-t { border-top: 1px solid var(--border); }

/* Hero - conteúdo visível de primeira, margens reduzidas */
.hero { min-height: 55vh; display: flex; align-items: center; justify-content: flex-start; position: relative; overflow: hidden; }
.hero-content.hero-animate .hero-animate-item {
  opacity: 0;
  animation: hero-fade-up 0.7s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content.hero-animate .hero-animate-item { animation: hero-fade-in 0.4s ease-out forwards; }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero .hero-bg-layer {
  position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center;
  opacity: 1;
  pointer-events: none;
}
.hero .hero-bg-link {
  position: absolute; inset: 0; z-index: 1;
}
.hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--background) 0%, rgba(14,14,14,0.8) 30%, transparent 70%);
  pointer-events: none;
}
.hero .container.hero-inner {
  position: relative; z-index: 2;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.hero .hero-inner:not(:has(.hero-image-wrap)) { justify-content: flex-start; }
.hero-content { max-width: 42rem; text-align: left; flex: 1 1 auto; }
.hero-image-wrap {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  max-width: 45%;
}
@media (max-width: 1023px) {
  .hero-image-wrap { display: none; }
}
.hero-image { max-width: 100%; max-height: 65vh; width: auto; height: auto; object-fit: contain; transform: translateX(-160px); }
.hero .badge { margin-bottom: 1rem; display: inline-block; }
.hero h1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero p { margin-top: 1rem; font-size: 1.125rem; color: var(--muted-foreground); max-width: 36rem; line-height: 1.75; }
.hero .buttons { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Stats */
section.bg-surface.border-y { padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num { font-size: 1.875rem; font-weight: 700; font-family: 'Montserrat', sans-serif; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@media (min-width: 768px) { .stat-num { font-size: 2.25rem; } }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Cards */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Cards - p-8 rounded-xl como original */
.card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: rgba(var(--primary-rgb), 0.3); box-shadow: 0 0 40px -10px rgba(var(--primary-rgb), 0.15); }
.card-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: background 0.3s;
}
.card:hover .card-icon { background: rgba(var(--primary-rgb), 0.2); }
.card-icon.accent { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }
.card:hover .card-icon.accent { background: rgba(var(--accent-rgb), 0.2); }
.card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Section heading */
.section-heading { text-align: center; margin-bottom: 2rem; }
.section-heading h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
@media (min-width: 768px) { .section-heading h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 3rem; } }
.section-heading .desc { margin-top: 1rem; color: var(--muted-foreground); font-size: 1.125rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* Two column layout */
.two-col { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.two-col.reverse .col-1 { order: 2; }
.two-col.reverse .col-2 { order: 1; }
@media (min-width: 1024px) { .two-col.reverse .col-1 { order: 1; } .two-col.reverse .col-2 { order: 2; } }

/* Phone mockup - w-64 h-[500px] rounded-[2.5rem] como original */
.phone-mockup {
  width: 16rem;
  height: 500px;
  border-radius: 2.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  padding: 0.75rem;
  box-shadow: 0 0 40px -10px rgba(var(--primary-rgb), 0.3);
  margin: 0 auto;
}
.phone-mockup.gold { border-color: rgba(var(--accent-rgb), 0.2); box-shadow: 0 0 40px -10px rgba(var(--accent-rgb), 0.2); }
.phone-mockup:has(.phone-screenshot) { padding: 0; }
.phone-inner {
  width: 100%; height: 100%;
  border-radius: 2rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
}
.phone-inner .icon { width: 3rem; height: 3rem; color: var(--primary); margin-bottom: 1rem; }
.phone-mockup.gold .phone-inner .icon { color: var(--accent); }
.phone-inner:has(.phone-screenshot) {
  padding: 0;
  overflow: hidden;
  border-radius: 2.25rem;
}
.phone-inner .phone-screenshot {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
  display: block;
}

/* List items */
.list-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.list-item::before { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.list-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Steps */
.step-item { display: flex; gap: 1.5rem; padding: 1.5rem; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); margin-bottom: 1rem; }
.step-num { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; flex-shrink: 0; }

/* Testimonials */
.testimonial .stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--accent); }
.testimonial .stars svg,
.testimonial .stars i { fill: currentColor; }
.testimonial .author { font-weight: 600; font-size: 0.875rem; margin-top: 1rem; }
.testimonial .role { font-size: 0.75rem; color: var(--muted-foreground); }

/* Not included (red) */
.not-included { background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2); }
.not-included .icon-x { color: var(--destructive); flex-shrink: 0; }

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
footer .grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { footer .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { footer .grid { grid-template-columns: repeat(4, 1fr); } }
footer h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.75rem; }
footer a { color: var(--muted-foreground); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--primary); }
footer .logo { font-size: 1.25rem; font-weight: 700; display: inline-flex; align-items: center; }
footer .logo span { color: var(--primary); }
footer .logo .logo-img { height: 1.75rem; width: auto; max-width: 140px; object-fit: contain; display: block; }
footer .disclaimer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; max-width: 48rem; margin-left: auto; margin-right: auto; }
footer .copyright { margin-top: 1rem; font-size: 0.75rem; color: var(--muted-foreground); text-align: center; }

/* Fundadores - Quem Somos */
.fundadores-section { padding: 4rem 0; }
.fundadores-image-wrap { width: 100%; overflow: hidden; }
.fundadores-image { width: 100%; height: auto; display: block; object-fit: cover; }

/* Page hero */
.page-hero { padding: 5rem 0; text-align: center; }
.page-hero h1 { font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); max-width: 48rem; margin-left: auto; margin-right: auto; }

/* Centered content */
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

/* Flex utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

/* SVG Icons (simplified) */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 48px; height: 48px; }

/* Animations (como Framer Motion do original) */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fade-in-x-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in-x-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-up { animation: fade-up 0.8s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-fade-in-left { animation: fade-in-x-left 0.6s ease-out forwards; }
.animate-fade-in-right { animation: fade-in-x-right 0.6s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.6s ease-out forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up, .animate-fade-in, .animate-fade-in-left, .animate-fade-in-right, .animate-scale-in { animation: fade-in 0.3s ease-out forwards; }
}
/* Scroll-triggered animations */
[data-animate="fade-up"] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
[data-animate][data-delay="0"] { transition-delay: 0s; }
[data-animate][data-delay="0.1"] { transition-delay: 0.1s; }
[data-animate][data-delay="0.2"] { transition-delay: 0.2s; }
[data-animate][data-delay="0.3"] { transition-delay: 0.3s; }
[data-animate="fade-up"].animated-in { opacity: 1; transform: translateY(0); }
[data-animate="fade-in"] { opacity: 0; transition: opacity 0.6s ease-out; }
[data-animate="fade-in"].animated-in { opacity: 1; }
[data-animate="fade-left"] { opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
[data-animate="fade-left"].animated-in { opacity: 1; transform: translateX(0); }
[data-animate="fade-right"] { opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
[data-animate="fade-right"].animated-in { opacity: 1; transform: translateX(0); }
