@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Tokens da homepage Valbrinn */
  --valbrinn-primary: #0055ff;
  --valbrinn-secondary: #84d600;
  --valbrinn-text: #575757;
  --valbrinn-bg-light: #ffffff;
  --valbrinn-bg-soft: #f7f7f7;
  --valbrinn-bg-soft2: #eeeeee;

  --radius-card: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.05);

  /* Atalhos para esta landing */
  --primary: var(--valbrinn-primary);
  --primary-dark: #003bb3;
  --accent: var(--valbrinn-secondary);
  --bg: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f9f9f9 40%,
    var(--valbrinn-bg-soft2) 100%
  );
  --text: var(--valbrinn-text);
  --muted: #6b7280;
  --border: #e5e7eb;
}

/* RESET SIMPLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Fundo igual à home */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Títulos com Exo 2 */
h1,
h2,
h3,
h4 {
  font-family: "Exo 2", system-ui, sans-serif;
  color: #474747;
  margin: 0 0 8px;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Subtítulos com Exo 2 */
.hero-subtitle,
.pricing-subtitle,
.card-header .muted-text,
.muted-text,
.info-label {
  font-family: "Exo 2", system-ui, sans-serif;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

/* Área da direita no header (botões) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ BOTÕES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Exo 2", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, color 0.15s ease-out,
    border-color 0.15s ease-out;
}

/* btn-primary + btn-outline combinam com a home */
.btn-primary {
  background: linear-gradient(135deg, var(--valbrinn-primary), #2f7bff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 85, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 85, 255, 0.3);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(0, 85, 255, 0.4);
  background: transparent;
  color: var(--valbrinn-primary);
  padding-inline: 16px;
}

.btn-outline:hover {
  background: rgba(0, 85, 255, 0.06);
}

.btn-full {
  width: 100%;
}

/* ============ HERO ============ */

.hero {
  padding: 32px 0 20px; /* mais baixo para caber em 1080p */
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.hero-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* Lista de benefícios com bolinhas */
.hero-benefits {
  margin: 18px 0 22px;
  padding: 0;
}

.hero-benefits.bullets {
  list-style: none;
}

.hero-benefits.bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.hero-benefits.bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 7px;
}

/* CTA do hero */
.hero-ctas {
  display: flex;
  align-items: center;
}

/* Coluna vazia para futura imagem */
.hero-empty-slot {
  flex: 1;
  min-width: 260px;
}

/* ============ SEÇÕES GERAIS ============ */

.section {
  padding: 20px 0;
}

.section-alt {
  padding-top: 12px;
  padding-bottom: 22px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

/* ============ COMO FUNCIONA ============ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 14px;
  border: 1px solid #84d600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #e5edff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ============ PLANO ============ */

.pricing-card {
  margin-top: 10px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px 22px 16px;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pricing-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.35;
}

.pricing-price-block {
  min-width: 170px;
}

.price {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}

.price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ==== AJUSTE DE RODAPÉ – CONDENSAR ==== */

.site-footer {
  padding: 0;
}

.footer-content {
  padding: 4px 0 2px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.15;
}

.footer-content p {
  margin: 0;
  padding: 0;
}

.footer-content a {
  margin: 0 4px;
}

/* ============ RESPONSIVO ============ */

@media (max-width: 960px) {
  .hero-content {
    flex-direction: column;
    gap: 28px;
  }

  .hero-empty-slot {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-price-block {
    width: 100%;
  }
}

/* =========================================
   LAYOUT DA PÁGINA DE PAGAMENTO / ASSINATURA
   ========================================= */

/* Nav simples com botão à direita */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botão secundário no header (Voltar à conta) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Exo 2", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0, 85, 255, 0.15);
  background: #ffffff;
  color: var(--valbrinn-primary);
  transition: transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out,
    color 0.15s ease-out,
    border-color 0.15s ease-out;
}

.btn-secondary:hover {
  background: rgba(0, 85, 255, 0.04);
  border-color: rgba(0, 85, 255, 0.35);
  transform: translateY(-1px);
}

/* Seção principal da página de pagamento */
.section {
  padding: 40px 0 64px;
}

/* Card central com mesmo “feeling” da home */
.card {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 24px 28px 28px;
  max-width: 720px;
  margin: 32px auto 0;
}

/* Cabeçalho do card (título + texto de apoio) */
.card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.card-header h1 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 6px;
}

.card-header .muted-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Corpo do card */
.card-body {
  font-size: 0.95rem;
}

/* Grid de informações do plano */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.info-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.info-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Texto “explicativo” abaixo da grid */
.muted-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Área do botão de ação */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Deixa o botão principal com largura confortável */
.actions .btn-primary {
  min-width: 260px;
  text-align: center;
}

/* Rodapé do card (texto pequeno) */
.card-body p.small {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .card {
    padding: 20px 18px 22px;
    margin-top: 20px;
  }

  .card-header h1 {
    font-size: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
