/* ============================================
   TMJ – The Marketing Journey
   Main Stylesheet
   Colors: #0A0A0A (black), #FFFFFF (white), #FF6B00 (orange)
============================================ */

/* ── CSS VARIABLES ── */
:root {
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-mid: #1A1A1A;
  --black-card: #161616;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.7);
  --white-faint: rgba(255,255,255,0.08);
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-glow: rgba(255, 107, 0, 0.18);
  --gray: #888888;
  --gray-light: #CCCCCC;
  --border: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --font: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; }
.highlight { color: var(--white); position: relative; }
.highlight-orange { color: var(--orange); }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: var(--white-faint);
}
.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 18px 32px; }
.btn-small {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 10px;
  transition: var(--transition);
}
.btn-small:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.btn-nav:hover { background: var(--orange-light) !important; }

/* ── SECTION COMMONS ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-subtitle { color: var(--white-dim); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── REQUIRED FIELD ── */
.required { color: var(--orange); }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  color: var(--white-dim);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--white); background: var(--white-faint); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-faint);
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  color: var(--white-dim);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-label { font-size: 0.8rem; color: var(--white-dim); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Phone mockup */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 300px;
  background: var(--black-mid);
  border-radius: 32px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px var(--orange-glow);
  position: relative;
  z-index: 2;
}
.phone-screen { padding: 20px; }
.app-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.app-logo { height: 24px; filter: brightness(0) invert(1); }
.app-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
}
.notif-icon {
  width: 32px; height: 32px;
  background: var(--orange-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.notif-icon.lead { background: rgba(100, 200, 100, 0.15); color: #4caf50; }
.notif-text { display: flex; flex-direction: column; gap: 2px; }
.notif-title { font-size: 0.75rem; font-weight: 700; color: var(--white); }
.notif-body { font-size: 0.7rem; color: var(--white-dim); }
.app-stats-mini {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.mini-stat {
  flex: 1;
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.7rem;
}
.mini-stat span { color: var(--white); font-weight: 600; display: flex; flex-direction: column; }
.mini-stat small { color: var(--white-dim); font-weight: 400; }
.app-crm { background: var(--white-faint); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }
.crm-label { font-size: 0.7rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 8px; }
.crm-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; margin-bottom: 4px; }
.crm-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 10px; animation: growBar 2s ease-out; }
@keyframes growBar { from { width: 0 !important; } }
.crm-pct { font-size: 0.68rem; color: var(--orange); font-weight: 600; }
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowPulse 4s infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.scroll-indicator { display: none; }

/* ============================================
   PLATFORMS STRIP
============================================ */
.platforms {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}
.platforms-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.platform-item:hover { color: var(--white); }
.platform-item i { font-size: 1.3rem; color: var(--gray); }
.platform-item:hover i { color: var(--orange); }

/* ============================================
   AI PARTNERS
============================================ */
.ai-partners {
  padding: 56px 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.partner-item:hover { opacity: 1; }
.partner-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.partner-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.partners-sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   COMO FUNCIONA – STEPS
============================================ */
.como-funciona { background: var(--black-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,107,0,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--orange-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--white-dim); font-size: 0.9rem; line-height: 1.6; }

/* ============================================
   DIFERENCIAL
============================================ */
.diferencial { background: var(--black); }
.diferencial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diferencial-text .section-title { margin-bottom: 20px; }
.diferencial-text p { color: var(--white-dim); margin-bottom: 16px; line-height: 1.7; }
.check-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.check-list li i { color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.comparison-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comparison-col {
  padding: 28px 24px;
}
.comparison-col.bad { border-right: 1px solid var(--border); }
.comparison-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comparison-col.bad h4 { color: var(--gray); }
.comparison-col.bad h4 i { color: #555; }
.comparison-col.good h4 { color: var(--orange); }
.comparison-col.good h4 i { color: var(--orange); }
.comparison-col ul { display: flex; flex-direction: column; gap: 10px; }
.comparison-col.bad li {
  color: var(--gray);
  font-size: 0.85rem;
  padding-left: 12px;
  border-left: 2px solid #333;
}
.comparison-col.good li {
  color: var(--white-dim);
  font-size: 0.85rem;
  padding-left: 12px;
  border-left: 2px solid var(--orange);
}

/* ============================================
   JORNADA / NICHES
============================================ */
.jornada { background: var(--black-soft); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.niche-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.niche-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.niche-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.niche-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.niche-card p { color: var(--white-dim); font-size: 0.88rem; line-height: 1.5; }
.niche-card--cta {
  border-color: rgba(255,107,0,0.3);
  background: linear-gradient(135deg, var(--black-card), rgba(255,107,0,0.05));
}

/* ============================================
   APP SECTION
============================================ */
.app-section { background: var(--black); }
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-screens { position: relative; }
.screen {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.screen-top-bar {
  background: rgba(255,255,255,0.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.screen-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.screen-dot.red { background: #ff5f57; }
.screen-dot.yellow { background: #febc2e; }
.screen-dot.green { background: #28c840; }
.screen-title-bar {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--white-dim);
  font-weight: 600;
}
.screen-body { padding: 20px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dash-card {
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-card.accent { border-color: rgba(255,107,0,0.3); background: var(--orange-glow); }
.dash-card i { color: var(--orange); margin-bottom: 4px; }
.dash-card strong { font-size: 1.2rem; font-weight: 800; }
.dash-card small { font-size: 0.72rem; color: var(--white-dim); }
.dash-chat { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
}
.chat-msg.ia {
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,0,0.2);
  align-self: flex-start;
}
.chat-msg.client {
  background: var(--white-faint);
  border: 1px solid var(--border);
  align-self: flex-end;
}
.chat-from {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.chat-msg.client .chat-from { color: var(--white-dim); }
.chat-msg p { color: var(--white); margin: 0; }
.app-text .section-title { margin-bottom: 20px; }
.app-text p { color: var(--white-dim); margin-bottom: 16px; line-height: 1.7; }

/* ============================================
   DEPOIMENTOS
============================================ */
.depoimentos { background: var(--black-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.2); }
.testimonial-card.featured {
  border-color: rgba(255,107,0,0.4);
  background: linear-gradient(135deg, var(--black-card), rgba(255,107,0,0.06));
  transform: scale(1.02);
}
.stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-card p { color: var(--white-dim); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { color: var(--gray); font-size: 0.8rem; }

/* ============================================
   CONTATO
============================================ */
.contato { background: var(--black); }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-text .section-title { margin-bottom: 20px; }
.contato-text p { color: var(--white-dim); margin-bottom: 20px; line-height: 1.7; }
.contact-info { margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-dim);
  font-size: 1rem;
}
.contact-item i { color: var(--orange); }
.contact-item a { color: var(--white-dim); transition: var(--transition); }
.contact-item a:hover { color: var(--orange); }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-dim);
}
.contact-badge i { color: var(--orange); }

/* FORM */
.form-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-subtitle { color: var(--white-dim); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.5; }
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.form-group input {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder { color: var(--gray); }
.form-group input:focus {
  border-color: var(--orange);
  background: rgba(255,107,0,0.04);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group input.error { border-color: #ff4444; }
.error-msg { font-size: 0.78rem; color: #ff4444; display: none; }
.error-msg.show { display: block; }
.input-icon-wrap { position: relative; }
.input-prefix {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  z-index: 1;
}
.input-icon-wrap input { padding-left: 32px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.form-success h4 { font-size: 1.4rem; margin-bottom: 12px; }
.form-success p { color: var(--white-dim); line-height: 1.6; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--white-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.footer-email { color: var(--orange); font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.footer-email:hover { color: var(--orange-light); }
.footer-links h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li, .footer-links a {
  color: var(--white-dim);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-links li i { color: var(--gray); font-size: 0.85rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--gray); font-size: 0.82rem; }
.tamojunto {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white-dim);
  letter-spacing: 1px;
  opacity: 0.5;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE – TABLET
============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 24px 70px;
    text-align: center;
    gap: 0;
    min-height: unset;
  }
  .hero-content {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
  .hero-cta { justify-content: center; }
  .hero-stats {
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
  .hero-subtitle { margin: 0 auto 36px; max-width: 540px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .diferencial-inner { grid-template-columns: 1fr; gap: 48px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .app-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .partners-row { gap: 32px; }
}

/* ============================================
   RESPONSIVE – MOBILE
============================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--black-soft);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a {
    font-size: 1rem;
    display: block;
    padding: 12px 16px;
    width: 100%;
  }
  .hero {
    padding: 100px 20px 60px;
    text-align: center;
  }
  .hero-title { font-size: 2rem; line-height: 1.15; }
  .hero-badge { font-size: 0.78rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    width: 100%;
    justify-items: center;
  }
  .stat { align-items: center; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.68rem; text-align: center; }
  .stat-divider { width: 1px; height: 100%; background: var(--border); }
  .steps-grid { grid-template-columns: 1fr; }
  .comparison-card { grid-template-columns: 1fr; }
  .comparison-col.bad { border-right: none; border-bottom: 1px solid var(--border); }
  .niches-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testimonial-card.featured { transform: none; }
  .form-card { padding: 28px 20px; }
  .contact-badges { flex-direction: column; }
  .platforms-row { gap: 20px; }
  .partners-row { gap: 24px; }
  .partner-logo { height: 22px; }
  .partners-sub { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero {
    padding: 96px 16px 52px;
  }
  .hero-title { font-size: 1.75rem; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
