/* ══ landing-page / style.css ═══════════════════════════════
   Importa base.css e define identidade visual da landing page.
   Tema: moderno, limpo, conversão-focado.
════════════════════════════════════════════════════════════ */

:root {
  --color-primary:     #6366f1;
  --color-primary-2:   #818cf8;
  --color-primary-rgb: 99,102,241;
  --color-bg:          #ffffff;
  --color-bg-2:        #f8f9ff;
  --color-bg-3:        #eef0ff;
  --color-text:        #0f0f1a;
  --color-text-2:      #5a5a7a;
  --color-text-3:      #9090b0;
  --color-border:      rgba(99,102,241,.12);
  --font-sans:         'Plus Jakarta Sans', system-ui, sans-serif;
}

body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.nav.scrolled { border-bottom-color: var(--color-border); }

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--color-primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; color: var(--color-text-2); text-decoration: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--color-border); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(99,102,241,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--color-text-2);
  font-weight: 400;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-2);
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-3);
  border: 2px solid var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -8px;
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; }

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(99,102,241,.15);
  aspect-ratio: 4/3;
  background: var(--color-bg-2);
}

.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Logos ── */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-2);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 24px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-3);
  letter-spacing: -.01em;
}

/* ── Sobre ── */
.section-alt { background: var(--color-bg-2); }

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-visual { position: relative; }

.sobre-visual img {
  border-radius: 16px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.sobre-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-primary);
  color: white;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.sobre-card strong { font-size: 28px; font-weight: 800; display: block; }
.sobre-card span   { font-size: 12px; opacity: .85; }

.sobre-texto h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 16px; }
.sobre-texto p  { color: var(--color-text-2); line-height: 1.8; margin-bottom: 24px; }

.sobre-lista { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.sobre-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-2);
}

.sobre-lista li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(99,102,241,.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Benefícios ── */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.beneficio-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.beneficio-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.beneficio-icon {
  width: 48px;
  height: 48px;
  background: rgba(99,102,241,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.beneficio-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.beneficio-item p  { font-size: 14px; color: var(--color-text-2); line-height: 1.6; }

/* ── Depoimentos ── */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depoimento-item {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
}

.depoimento-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }

.depoimento-texto {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.depoimento-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.depoimento-nome  { font-size: 13px; font-weight: 600; }
.depoimento-cargo { font-size: 12px; color: var(--color-text-3); }

/* ── FAQ ── */
.faq-container { max-width: 720px; }

.faq-lista { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-pergunta {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-sans);
  gap: 16px;
}

.faq-pergunta i { transition: transform .2s; flex-shrink: 0; color: var(--color-primary); }
.faq-item.open .faq-pergunta i { transform: rotate(180deg); }

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.open .faq-resposta { max-height: 300px; padding: 0 20px 18px; }

/* ── CTA Final ── */
.cta-final {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8b5cf6 100%);
  color: white;
}

.cta-content { text-align: center; max-width: 560px; margin: 0 auto; }

.cta-final h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: white;
}

.cta-final p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.cta-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.cta-form input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  outline: none;
  color: var(--color-text);
  font-family: var(--font-sans);
}

.cta-form .btn {
  border-radius: 0;
  background: var(--color-text);
  color: white;
  white-space: nowrap;
}

.cta-disclaimer { font-size: 12px; color: rgba(255,255,255,.6); }

/* ── Footer ── */
.footer {
  background: var(--color-text);
  color: white;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand strong { font-size: 18px; font-weight: 800; display: block; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: white; }

.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── Responsivo ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; }
  .hero-visual { display: none; }
  .sobre-layout { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }
  .beneficios-grid   { grid-template-columns: 1fr; }
  .depoimentos-grid  { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
