/* --- Utilitários de Margin --- */
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-10 { margin-left: 2.5rem; }
.ml-12 { margin-left: 3rem; }
.ml-16 { margin-left: 4rem; }
.ml-20 { margin-left: 5rem; }
.ml-24 { margin-left: 6rem; }
.ml-32 { margin-left: 8rem; }
.ml-40 { margin-left: 10rem; }
.ml-48 { margin-left: 12rem; }
.ml-56 { margin-left: 14rem; }
.ml-64 { margin-left: 16rem; }
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }
.mr-10 { margin-right: 2.5rem; }
.mr-12 { margin-right: 3rem; }
.mr-16 { margin-right: 4rem; }
.mr-20 { margin-right: 5rem; }
.mr-24 { margin-right: 6rem; }
.mr-32 { margin-right: 8rem; }
.mr-40 { margin-right: 10rem; }
.mr-48 { margin-right: 12rem; }
.mr-56 { margin-right: 14rem; }
.mr-64 { margin-right: 16rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }
.mb-40 { margin-bottom: 10rem; }
.mb-48 { margin-bottom: 12rem; }
.mb-56 { margin-bottom: 14rem; }
.mb-64 { margin-bottom: 16rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mt-40 { margin-top: 10rem; }
.mt-48 { margin-top: 12rem; }
.mt-56 { margin-top: 14rem; }
.mt-64 { margin-top: 16rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.pb-20{
    padding-bottom: 5rem;
}
:root {
  --primary-50:  #F4F1FF;
  --primary-100: #E6E0FF;
  --primary-200: #C8B9FF;
  --primary-300: #A08EFF;
  --primary-400: #8363F3;
  --primary-500: #623CEA;
  --primary-600: #4E2EC3;
  --primary-700: #3F249E;
  --primary-800: #2F1B79;
  --primary-900: #1F1254;

  --secondary-50:  #FFF0F8;
  --secondary-100: #FFE1F2;
  --secondary-200: #FFBFE5;
  --secondary-300: #FF9BD6;
  --secondary-400: #FA84D4;
  --secondary-500: #E664BC;
  --secondary-600: #C94FA5;
  --secondary-700: #A63C86;
  --secondary-800: #7F2B66;
  --secondary-900: #591D46;

  --gray-50:  #F8F8FA;
  --gray-100: #EDEDF1;
  --gray-200: #D6D5DD;
  --gray-300: #B7B5C3;
  --gray-400: #9A97AA;
  --gray-500: #8C8A97;
  --gray-600: #7A7786;
  --gray-700: #5F5C6B;
  --gray-800: #4E4B59;
  --gray-900: #34323E;

  --white: #F6F6F6;
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- Utilitários (Recriando Tailwind) --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.pb-0{
  padding-bottom: 0;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.text-white {
  color: var(--white);
}
.text-gray-900 {
  color: var(--gray-900);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-primary-500 {
  color: var(--primary-500);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.transition-all {
  transition: all 0.3s ease;
}
.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}
.transition-transform {
  transition: transform 0.3s ease;
}
.cursor-pointer {
  cursor: pointer;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-primary-100 {
  border-color: var(--primary-100);
}
.hover-lift:hover {
  transform: translateY(-4px);
}
.group:hover .group-hover-scale {
  transform: scale(1.1);
}
.group:hover .group-hover-translate-x {
  transform: translateX(4px);
}

/* --- Ícones SVG --- */
.w-4 {
  width: 1rem;
}
.h-4 {
  height: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.h-7 {
  height: 1.75rem;
}
.w-35 {
  width: 2.188rem;
}
.h-35 {
  height: 2.188rem;
}

/* --- Gradientes --- */
.text-gradient {
  background: linear-gradient(
    to right,
    var(--primary-400),
    var(--secondary-400),
    var(--primary-500)
  );
  -webkit-background-clip: text;
  color: transparent;
}
.bg-grad-pink-rose {
  background: linear-gradient(
    to bottom right,
    var(--primary-300),
    var(--secondary-400)
  );
}
.bg-grad-rose-pink {
  background: linear-gradient(
    to bottom right,
    var(--primary-400),
    var(--secondary-400)
  );
}
.bg-grad-rose-pink-dark {
  background: linear-gradient(
    to bottom right,
    var(--secondary-400),
    var(--primary-500)
  );
}
.bg-grad-pink-purple {
  background: linear-gradient(
    to bottom right,
    var(--primary-500),
    var(--primary-300)
  );
}
.bg-soft-gradient {
  background: linear-gradient(
    to bottom,
    rgba(255, 241, 242, 0.5),
    var(--white),
    var(--white)
  );
}

/* --- Blobs de Fundo --- */
.bg-decor {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.4;
}
.blob-top-right {
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: linear-gradient(
    to bottom left,
    rgba(252, 231, 243, 0.6),
    rgba(255, 241, 242, 0.4),
    transparent
  );
}
.blob-bottom-left {
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    to top right,
    rgba(252, 231, 243, 0.5),
    rgba(250, 245, 255, 0.3),
    transparent
  );
}
.blob-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: linear-gradient(
    to right,
    rgba(252, 231, 243, 0.3),
    rgba(255, 241, 242, 0.3)
  );
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(252, 231, 243, 0.5);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(
    to bottom right,
    var(--primary-300),
    var(--secondary-400)
  );
  justify-content: center;
  align-items: center;
  display: flex;
}
.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  fill: var(--white);
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-800);
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  margin-left: 2.5rem;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-500);
}
.menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--gray-600);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--primary-100);
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  padding: 0.5rem 0;
}
.mobile-menu a:hover {
  color: var(--primary-500);
}
.mobile-menu .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Botões --- */
.btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-lg {
  padding: 1rem 2rem;
}
.btn-gradient {
  background: linear-gradient(to right, var(--primary-400), var(--secondary-400));
  color: var(--white);
}
.btn-gradient:hover {
  box-shadow: 0 10px 15px -3px rgba(251, 207, 232, 0.5);
}
.btn-outline {
  background: var(--white);
  border: 2px solid var(--primary-200);
  color: var(--gray-700);
}
.btn-outline:hover {
  border-color: var(--primary-300);
  background: rgba(253, 242, 248, 0.5);
}
.btn-soft {
  background: var(--primary-50);
  color: var(--primary-500);
}
.btn-soft:hover {
  background: var(--primary-100);
}
.btn-white {
  background: var(--white);
  color: var(--primary-500);
  font-weight: 700;
}
.btn-white:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-400);
  border-radius: 9999px;
}
.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-500);
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}
/* Preview Cards Animation */
.cards-preview-container {
  margin-top: 5rem;
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
}
.cards-preview-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--white), transparent, transparent);
  z-index: 10;
  pointer-events: none;
}
.card-preview {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(251, 207, 232, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card-preview:hover {
  transform: translateY(-0.5rem);
}
.card-preview::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
}
.card-1,
.card-5 {
  width: 5rem;
  height: 8rem;
  opacity: 0.6;
  background: linear-gradient(
    to bottom right,
    var(--primary-200),
    var(--primary-300)
  );
}
.card-2,
.card-4 {
  width: 7rem;
  height: 10rem;
  background: linear-gradient(
    to bottom right,
    var(--secondary-200),
    var(--secondary-300)
  );
}
.card-3.main {
  width: 9rem;
  height: 12rem;
  z-index: 20;
  background: linear-gradient(
    to bottom right,
    var(--primary-300),
    var(--secondary-400)
  );
}

/* --- Sections General --- */
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-100);
  color: var(--primary-500);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 42rem;
  margin: 0 auto;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 1.5rem;
  border: 1px solid var(--primary-100);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 20px 25px -5px rgba(252, 231, 243, 0.5);
}
.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(
    to bottom right,
    var(--primary-100),
    var(--secondary-100)
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.feature-desc {
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Plans Grid & Input Style --- */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.plan-card {
  position: relative;
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.plan-card.border-pink {
  border-color: var(--primary-100);
}
.plan-card.border-pink:hover {
  border-color: var(--primary-200);
}
.plan-card.border-rose {
  border-color: var(--secondary-300);
}
.plan-card.popular-shadow {
  box-shadow: 0 20px 25px -5px rgba(252, 231, 243, 0.5);
}
.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: linear-gradient(to right, var(--primary-400), var(--secondary-400));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.plan-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.plan-initial {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.plan-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.price-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gray-900);
}
.price-period {
  color: var(--gray-400);
  font-size: 0.875rem;
}
.plan-benefits {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.popular-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(251, 207, 232, 0.5);
}

/* === ESTILO DO INPUT DE ASSINATURA (O que faltava) === */
.sub-field-container {
  margin-bottom: 1rem;
  animation: fadeIn 0.3s ease-out;
  width: 100%;
}
.sub-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary-100);
  border-radius: 0.75rem;
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: all 0.3s ease;
}
.sub-input::placeholder {
  color: var(--gray-400);
}
.sub-input:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
}
.sub-input.input-error {
  border-color: var(--secondary-500);
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.sub-error-msg {
  color: var(--secondary-500);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}
/* ===================================================== */

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.step-number {
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary-100);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  z-index: 0;
}
.step-content {
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.step-desc {
  color: var(--gray-500);
}
.step-connector {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 3rem;
  height: 2px;
  background: var(--primary-200);
}

/* --- FAQ Section --- */
.faq-button {
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
}
.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

/* --- CTA Section --- */
.cta-box {
  position: relative;
}
.cta-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  pointer-events: none;
}
.cta-circle-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  transform: translate(50%, -50%);
}
.cta-circle-2 {
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, 50%);
}

/* --- Footer --- */
.footer-links a {
  text-decoration: none;
  color: var(--gray-500);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-500);
}

/* --- Responsividade & Utilitários de Display --- */
.desktop-only {
  display: none;
}
.mobile-only {
  display: block;
}

/* =====================================================
   ESTILIZAÇÃO: FAQ, CTA & FOOTER
   ===================================================== */

/* --- FAQ Section --- */
#faq {
  position: relative;
  z-index: 10;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--primary-100);
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--primary-200);
  box-shadow: 0 10px 20px -5px rgba(252, 231, 243, 0.4);
}

.faq-item.active {
  border-color: var(--primary-300);
  box-shadow: 0 15px 30px -10px rgba(252, 231, 243, 0.6);
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-button span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-button span {
  color: var(--primary-500);
}

.faq-icon {
  color: var(--primary-400);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-size: 1rem;
  /* Animação suave de entrada */
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- CTA Section (Pronto para começar?) --- */
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--primary-400), var(--secondary-500));
  border-radius: 2.5rem;
  padding: 4rem 2rem;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.25);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-circle-1 {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  right: -5rem;
}

.cta-circle-2 {
  width: 15rem;
  height: 15rem;
  bottom: -7rem;
  left: -5rem;
}

/* --- Footer --- */
.footer {
  background: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--primary-100);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-500);
  transform: translateY(-2px);
}

.footer-bottom {
  width: 100%;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--primary-50);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* --- Ajustes Responsivos para estas seções --- */
@media (min-width: 768px) {
  .cta-box {
    padding: 5rem 4rem;
  }

  .cta-box h2 {
    font-size: 3.5rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .desktop-only {
    display: flex;
  }
  .mobile-only {
    display: none;
  }
  .step-connector.desktop-only {
    display: block;
  }
  .footer .flex-col {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Animação Pulse do Tailwind */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
