/* ============================
   LANDING PAGE - PLANILHAS
   Estilos específicos para páginas de produto
============================ */

/* Container da landing page */
.landing-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Header da landing */
.landing-header {
  text-align: center;
  margin-bottom: 48px;
}

.landing-header h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}

.landing-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grupo de CTAs */
.cta-group {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões da landing page */
.btn-landing {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  font-family: inherit;
  line-height: 1;
}

.btn-landing-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  border: none;
}

.btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.btn-landing-primary:active {
  transform: translateY(0);
}

.btn-landing-secondary {
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-landing-secondary:hover {
  background: color-mix(in srgb, var(--primary) 8%, var(--card));
  border-color: var(--primary);
  color: var(--primary);
}

/* Seções da landing */
.landing-section {
  margin-top: 48px;
}

/* Grid de benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Cards de benefícios - USA --card DO BASE.CSS */
.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.benefit-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
  transition: color var(--transition-base);
  font-weight: 600;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Seção de CTA secundária */
.cta-section {
  text-align: center;
  margin-top: 48px;
}

.cta-section h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Seção de preço - USA --card DO BASE.CSS */
.price-section {
  text-align: center;
  margin-top: 56px;
  padding: 40px 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.price-section p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.price-section strong {
  font-size: 2.2rem;
  color: var(--positive);
  display: block;
  margin: 12px 0;
  font-weight: 700;
}

/* Nota de rodapé */
.landing-footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  opacity: 0.8;
}

/* Nota de features */
.feature-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================
   RESPONSIVIDADE
============================ */

/* Laptops 13-15" */
@media (max-width: 1366px) and (min-width: 1024px) {
  .landing-container {
    padding: 40px 24px;
  }

  .landing-header h1 {
    font-size: 1.85rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .landing-container {
    padding: 40px 20px;
  }

  .landing-header h1 {
    font-size: 1.75rem;
  }

  .benefits-grid {
    gap: 16px;
  }
}

/* Mobile grande */
@media (max-width: 768px) {
  .landing-container {
    padding: 32px 18px;
  }

  .landing-header {
    margin-bottom: 36px;
  }

  .landing-header h1 {
    font-size: 1.5rem;
  }

  .landing-header p {
    font-size: 0.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 20px;
  }

  .cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn-landing {
    width: 100%;
    text-align: center;
  }

  .landing-section {
    margin-top: 36px;
  }

  .cta-section h3 {
    font-size: 1.1rem;
  }

  .price-section {
    padding: 32px 20px;
    margin-top: 44px;
  }

  .price-section strong {
    font-size: 1.9rem;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .landing-container {
    padding: 24px 16px;
  }

  .landing-header h1 {
    font-size: 1.35rem;
  }

  .landing-section {
    margin-top: 32px;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.875rem;
  }

  .price-section strong {
    font-size: 1.75rem;
  }

  .landing-footer-note {
    margin-top: 44px;
    padding-top: 24px;
  }
}