/* ==========================================================================
   SCOPSY LAB - LANDING PAGE STYLES
   v2.1 - Integrated with Core Design System & Fixes
   ========================================================================== */

/* ==== HEADER (Extends core.css) ==== */
/* .header is already defined in core.css */

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  color: var(--text-white);
  margin-left: 2rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav a.btn-secondary {
  border-color: var(--text-white);
  color: var(--text-white);
  padding: 10px 24px;
}

.nav a.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

/* ==== HERO ==== */
.hero {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 140px 20px 100px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140, 82, 255, 0.1);
  border: 1px solid rgba(140, 82, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
}

.gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-check {
  color: var(--color-success);
  font-weight: bold;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

/* ==== SEÇÕES GERAIS ==== */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* ==== THE GAP ==== */
.the-gap {
  padding: 120px 20px;
  background: var(--bg-card);
  text-align: center;
}

.gap-title {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  max-width: 900px;
  margin: 0 auto 20px;
}

.gap-subtitle {
  margin-bottom: 50px;
}

.gap-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.gap-card {
  background: var(--bg-subtle);
  border-left: 5px solid var(--color-primary);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: left;
}

.gap-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  margin-bottom: 12px;
}

.gap-author {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.gap-close {
  font-size: 1.3rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ==== SOLUÇÃO ==== */
.solucao {
  padding: 120px 20px;
  background: var(--bg-subtle);
}

.solucao-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
}

.solucao-steps .step {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 1.15rem;
  transition: var(--transition);
}

.solucao-steps .step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.solucao-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==== BENEFÍCIOS ==== */
.beneficios {
  padding: 120px 20px;
  background: var(--bg-card);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio-card {
  text-align: center;
  padding: 30px;
}

.beneficio-card img {
  height: 80px;
  margin: 0 auto 20px;
}

.beneficio-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  background: var(--bg-subtle);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--color-primary);
}

.beneficio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* ==== DIFERENCIAL + TABELA ==== */
.diferencial {
  padding: 120px 20px;
  background: var(--bg-subtle);
}

.comparativo-table {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  border-collapse: collapse;
  font-size: 1.1rem;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparativo-table th,
.comparativo-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparativo-table th {
  background: var(--color-primary);
  color: var(--text-white);
}

.exemplo-renata {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 50px auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ==== PROVA SOCIAL ==== */
.prova-social {
  padding: 120px 20px;
  background: var(--bg-card);
}

.depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.depoimento {
  background: var(--bg-subtle);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
}

.depoimento img {
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

/* ==== HOW IT WORKS ==== */
.how-it-works {
  padding: 120px 20px;
  background: var(--bg-dark);
  color: var(--text-white);
  text-align: center;
}

.how-it-works .section-title {
  color: var(--text-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* ==== FAQ ==== */
.faq {
  padding: 120px 20px;
  background: var(--bg-card);
}

details {
  background: var(--bg-subtle);
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--text-white);
  list-style: none;
}

details[open] summary {
  background: #6a38cc;
}

details p {
  padding: 24px;
  color: var(--text-secondary);
}

/* ==== CTA FINAL ==== */
.cta-final {
  padding: 120px 20px;
  background: var(--gradient-primary);
  color: var(--text-white);
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-note {
  margin-top: 24px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-final-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-guarantee {
  margin-top: 32px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ==== FOOTER ==== */
.footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}