/* === Variables === */
:root {
  --primary: #1B3A5C;
  --primary-dark: #0F2440;
  --primary-light: #2A5580;
  --accent: #C8A961;
  --accent-light: #E0C882;
  --accent-dark: #A8893E;
  --text: #2D3748;
  --text-light: #718096;
  --text-white: #FFFFFF;
  --bg-light: #F7F8FA;
  --bg-white: #FFFFFF;
  --bg-dark: #0F2440;
  --bg-card: #FFFFFF;
  --shadow: 0 4px 24px rgba(27, 58, 92, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 58, 92, 0.12);
  --shadow-accent: 0 8px 32px rgba(200, 169, 97, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 10px;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.2;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav a:not(.btn):hover {
  color: var(--primary);
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--primary);
  color: var(--text-white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-white);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--text-white);
  font-size: 17px;
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 10px;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 97, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 169, 97, 0.08) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--text-white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 97, 0.15);
  border: 1px solid rgba(200, 169, 97, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Price Anchor */
.hero-price-anchor {
  animation: fadeInUp 0.8s ease 0.45s both;
  margin-bottom: 36px;
}

.price-compare {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.price-old {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.price-old strong {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
}

.price-arrow {
  color: var(--accent);
  font-size: 0.9rem;
}

.price-new {
  font-size: 0.95rem;
  color: var(--accent-light);
}

.price-new strong {
  font-size: 1.2rem;
  color: var(--accent);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* === Social Proof Bar === */
.social-proof-bar {
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(200, 169, 97, 0.2);
  padding: 16px 0;
}

.proof-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.proof-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

.proof-item strong {
  color: var(--text-white);
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
}

.section-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0A1929 100%);
  color: var(--text-white);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-dark .section-header h2,
.section-accent .section-header h2 {
  color: var(--text-white);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p,
.section-accent .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* === Benefits === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === Verificador === */
.verificador-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.verificador-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  text-align: center;
}

.form-select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  margin-bottom: 24px;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A961' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.12);
}

.form-select option {
  background: var(--primary-dark);
  color: var(--text-white);
}

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* Preview Result */
.preview-result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

.preview-header {
  text-align: center;
  padding: 40px 40px 24px;
  background: rgba(37, 211, 102, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-icon-success {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #25D366;
}

.preview-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.preview-summary {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.preview-content {
  padding: 32px 40px;
}

.preview-content h4 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.preview-list li i {
  color: #25D366;
  flex-shrink: 0;
}

.preview-list-blur {
  filter: blur(2px);
  opacity: 0.5;
  user-select: none;
}

.preview-list-blur i {
  color: var(--accent) !important;
}

/* Paywall */
.preview-paywall {
  text-align: center;
  padding: 40px;
  background: linear-gradient(180deg, transparent, rgba(200, 169, 97, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.paywall-price {
  margin-bottom: 24px;
}

.paywall-from {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.paywall-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.paywall-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.paywall-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.paywall-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.paywall-economy {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.paywall-economy strong {
  color: #25D366;
}

.btn-paywall {
  width: 100%;
  max-width: 400px;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px 36px;
}

.paywall-guarantee {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === Eligibility === */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eligibility-category {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.eligibility-category:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--accent);
}

.eligibility-category h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-category h3 i {
  font-size: 18px;
  color: var(--accent);
}

.eligibility-category ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eligibility-category li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.eligibility-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.eligibility-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(200, 169, 97, 0.06) !important;
  border-color: rgba(200, 169, 97, 0.25) !important;
}

.eligibility-cta h3 {
  color: var(--primary);
}

.eligibility-cta p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* === Steps === */
.steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary-light));
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(200, 169, 97, 0.3);
}

.step-content {
  padding-top: 8px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(200, 169, 97, 0.25);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-features li i {
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-features li .fa-check {
  color: #25D366;
}

.pricing-features li .fa-times {
  color: #ccc;
}

.feature-disabled {
  opacity: 0.45;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
}

.pricing-guarantee {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pricing-guarantee i {
  color: var(--accent);
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  gap: 16px;
}

.faq-question i {
  font-size: 12px;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* === CTA === */
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 169, 97, 0.12);
  border: 1px solid rgba(200, 169, 97, 0.25);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.cta-urgency i {
  color: var(--accent);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === Footer === */
.footer {
  background: #060E1A;
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-name {
  color: var(--text-white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-bottom p {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem !important;
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* Scroll reveal */
.benefit-card,
.eligibility-category,
.step,
.state-card,
.testimonial-card,
.faq-item,
.pricing-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.visible,
.eligibility-category.visible,
.step.visible,
.state-card.visible,
.testimonial-card.visible,
.faq-item.visible,
.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-featured.visible {
  transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .benefits-grid,
  .eligibility-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured.visible {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .section {
    padding: 64px 0;
  }

  .benefits-grid,
  .eligibility-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .price-compare {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius);
    padding: 16px 24px;
  }

  .price-arrow {
    transform: rotate(90deg);
  }

  .proof-items {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .verificador-form {
    padding: 32px 24px;
  }

  .preview-header,
  .preview-content,
  .preview-paywall {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .cta-urgency {
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius);
  }
}
