/**
 * Seção Comece agora – Criar conta + Documentação API
 * Padrão: section 80px 0 100px, h2 3rem.
 * sms(novo)/css/sms-section-next-steps.css
 */

.sms-next-steps-section {
  padding: 80px 0 100px;
  background: var(--sms-gradient);
}


[data-theme="dark"] .sms-next-steps-section {
  background: var(--sms-gradient-section);
}

.sms-next-steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sms-next-steps-header {
  text-align: center;
  margin-bottom: 48px;
}

.sms-next-steps-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px 0;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

.sms-next-steps-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sms-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sms-next-steps-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.sms-next-steps-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.sms-next-steps-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: #ffffff;
  background: rgb(0, 115, 255);
  border-radius: 14px;
}

.sms-next-steps-card-icon svg {
  width: 26px;
  height: 26px;
}

[data-theme="dark"] .sms-next-steps-card-icon {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
}

.sms-next-steps-card-title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
}

.sms-next-steps-card-text {
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px 0;
  flex: 1;
}

.sms-next-steps-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: auto;
}

[data-theme="dark"] .sms-next-steps-card-cta {
  color: #60a5fa;
}

.sms-next-steps-card:hover .sms-next-steps-card-cta {
  color: #bbdbff;
}

.sms-next-steps-card-cta svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sms-next-steps-card:hover .sms-next-steps-card-cta svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .sms-next-steps-section {
    padding: 60px 0 80px;
  }

  .sms-next-steps-header {
    margin-bottom: 36px;
  }

  .sms-next-steps-title {
    font-size: 2rem;
  }

  .sms-next-steps-desc {
    font-size: 1rem;
  }

  .sms-next-steps-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sms-next-steps-card {
    padding: 30px 26px 32px;
  }

  .sms-next-steps-card-title {
    font-size: 1.2rem;
  }

  .sms-next-steps-card-text {
    font-size: 0.9375rem;
  }
}