/* ============================================
   MSV Landing Page - Style Sheet
   Movimento Só Vai - Assessoria Esportiva
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; font-weight: 800; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- VARIABLES --- */
:root {
  --blue: #1e3a5f;
  --blue-light: #2a4f7a;
  --blue-dark: #152a45;
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #ea580c;
  --bg: #f8fafc;
  --bg-warm: #fffbf5;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --max-w: 1200px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CONTAINER --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
@media(min-width: 768px) { .container { padding: 0 32px; } }
@media(min-width: 1024px) { .container { padding: 0 48px; } }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 12px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all 0.25s ease;
  text-align: center; justify-content: center;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-ghost { background: transparent; color: var(--blue); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.3); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

/* --- HEADER --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.header.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 28px; height: 28px; color: var(--orange); }
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--blue); }

.nav-desktop { display: none; gap: 32px; }
.nav-desktop a {
  font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--blue); }

.header-actions { display: none; gap: 8px; align-items: center; }
.header-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

.mobile-menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 110;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2.5px; background: var(--blue);
  border-radius: 2px; transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 24px 20px; z-index: 99;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 16px 0; font-size: 1.1rem; font-weight: 600;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

@media(min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.85) 0%, rgba(30,58,95,0.9) 50%, rgba(15,23,42,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(249,115,22,0.15); color: var(--orange-light);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,0.2);
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); color: #fff;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 32px;
}
.hero-cta { margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; color: #fff; font-weight: 800; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

@media(min-width: 768px) {
  .hero { padding: 120px 0 80px; }
  .hero-stats { gap: 40px; }
}

/* --- SECTION HEADERS --- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
  color: var(--orange); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
  border: 1px solid rgba(249,115,22,0.12);
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--gray-900);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-header p { font-size: 1.05rem; color: var(--gray-500); }

/* --- FEATURES --- */
.features { padding: 80px 0; background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.35s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card h3 { font-size: 1.2rem; margin: 16px 0 8px; color: var(--gray-900); }
.feature-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.65; }

.feature-card-highlight { padding: 0; overflow: hidden; }
.feature-card-highlight .feature-content { padding: 24px 32px 32px; }
.feature-img-wrap {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--gray-100);
}
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-card-highlight:hover .feature-img-wrap img { transform: scale(1.05); }

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-blue { background: rgba(30,58,95,0.08); color: var(--blue); }
.feature-icon-orange { background: rgba(249,115,22,0.1); color: var(--orange); }

@media(min-width: 768px) {
  .features { padding: 100px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .feature-card-highlight { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .feature-card-highlight .feature-img-wrap { aspect-ratio: auto; min-height: 280px; }
  .feature-card-highlight .feature-content { display: flex; flex-direction: column; justify-content: center; }
}
@media(min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card-highlight { grid-column: span 3; grid-template-columns: 1fr 1fr; }
}

/* --- HOW IT WORKS --- */
.how-it-works { padding: 80px 0; background: #fff; }
.steps { max-width: 700px; margin: 0 auto; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px 0;
}
.step-number {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 800; border-radius: 16px;
}
.step-content h3 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; color: var(--gray-500); }
.step-connector {
  width: 3px; height: 32px; background: var(--gray-200);
  margin-left: 27px; border-radius: 2px;
}
@media(min-width: 768px) {
  .how-it-works { padding: 100px 0; }
}

/* --- APP PREVIEW --- */
.app-preview { padding: 80px 0; background: var(--bg); overflow: hidden; }
.app-preview-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.app-preview-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px;
  letter-spacing: -0.02em; color: var(--gray-900);
}
.app-preview-text > p { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; color: var(--gray-700);
}
.check-list svg { color: var(--orange); flex-shrink: 0; }

/* Phone Mockup */
.app-preview-mockup { display: flex; justify-content: center; }
.phone-frame {
  width: 280px; border-radius: 36px; padding: 12px;
  background: var(--gray-900);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-screen {
  background: #fff; border-radius: 26px; padding: 20px 16px;
  min-height: 420px;
}
.mock-header {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.1rem; color: var(--blue);
  margin-bottom: 20px;
}
.mock-greeting {
  font-size: 0.85rem; color: var(--gray-500); margin-bottom: 16px;
}
.mock-streak {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 12px 16px; border-radius: var(--radius-sm);
  color: #fff; margin-bottom: 16px;
}
.mock-streak-fire { font-size: 1.5rem; }
.mock-streak strong { display: block; font-size: 1rem; }
.mock-streak small { font-size: 0.75rem; opacity: 0.85; }
.mock-card {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 16px; border: 1px solid var(--gray-100);
}
.mock-card-label { font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 4px; }
.mock-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--gray-900); margin-bottom: 8px; }
.mock-card-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 12px; }
.mock-btn {
  background: var(--blue); color: #fff; text-align: center;
  padding: 10px; border-radius: 8px; font-size: 0.82rem; font-weight: 700;
}
.mock-progress { background: var(--gray-50); border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--gray-100); }
.mock-progress-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.mock-progress-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
.mock-progress-fill { width: 60%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 3px; }
.mock-progress-days { display: flex; gap: 0; justify-content: space-between; }
.mock-progress-days span {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; border-radius: 50%; color: var(--gray-400);
  background: var(--gray-100);
}
.mock-progress-days span.done { background: var(--blue); color: #fff; }
.mock-progress-days span.active { background: var(--orange); color: #fff; }

@media(min-width: 768px) {
  .app-preview { padding: 100px 0; }
  .app-preview-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .phone-frame { width: 300px; }
}

/* --- TESTIMONIALS --- */
.testimonials { padding: 80px 0; background: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.testimonial-card {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-card > p {
  font-size: 1rem; color: var(--gray-700); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--gray-900); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }
@media(min-width: 768px) {
  .testimonials { padding: 100px 0; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* --- PRICING --- */
.pricing { padding: 80px 0; background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 820px; margin: 0 auto;
}
.pricing-card {
  position: relative; background: #fff;
  border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 40px rgba(249,115,22,0.12);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 18px; background: var(--orange); color: #fff;
  font-size: 0.78rem; font-weight: 700; border-radius: 50px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.pricing-desc { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--gray-600);
}
.pricing-features li.included svg { color: var(--orange); }
@media(min-width: 768px) {
  .pricing { padding: 100px 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- ACHIEVEMENT SECTION --- */
.achievement-section { padding: 80px 0; background: #fff; }
.achievement-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.achievement-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-100);
}
.achievement-img img { width: 100%; height: 100%; object-fit: cover; }
.achievement-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px;
  letter-spacing: -0.02em; color: var(--gray-900);
}
.achievement-content > p { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 28px; }
.badge-showcase {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.badge-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50); padding: 14px 16px;
  border-radius: var(--radius-sm); border: 1px solid var(--gray-100);
  transition: all 0.25s ease;
}
.badge-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.badge-emoji { font-size: 1.5rem; }
.badge-item span { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
@media(min-width: 768px) {
  .achievement-section { padding: 100px 0; }
  .achievement-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .badge-showcase { grid-template-columns: repeat(2, 1fr); }
}

/* --- FINAL CTA --- */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
}
.final-cta-inner {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.final-cta-note { margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
@media(min-width: 768px) {
  .final-cta { padding: 120px 0; }
}

/* --- FOOTER --- */
.footer { padding: 48px 0 32px; background: var(--gray-900); }
.footer-inner { text-align: center; }
.footer-brand { margin-bottom: 32px; }
.footer-brand .logo { justify-content: center; margin-bottom: 12px; }
.footer-brand .logo-icon { color: var(--orange); }
.footer-brand .logo-text { color: #fff; }
.footer-brand > p { font-size: 0.9rem; color: var(--gray-400); max-width: 400px; margin: 0 auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom p { font-size: 0.82rem; color: var(--gray-500); }

/* --- ANIMATIONS --- */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1; transform: translateY(0);
}

/* --- SCROLL OFFSET for fixed header --- */
html { scroll-padding-top: 80px; }
