/* ════════════════════════════════════════════════════════════════════
   Premium Clube — Landing Page
   ════════════════════════════════════════════════════════════════════ */

/* ─── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 31, 78, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--white);
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}
.header-cta {
  font-size: var(--fs-small);
  padding: var(--space-2) var(--space-4);
  min-height: 40px;
}
@media (max-width: 480px) {
  .brand-text { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(245, 130, 32, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(42, 82, 178, 0.30), transparent 70%),
    var(--premium-blue-900);
  color: var(--white);
  padding-block: var(--space-8) var(--space-9);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-8); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245, 130, 32, 0.14);
  border: 1px solid rgba(245, 130, 32, 0.3);
  color: #FFC591;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--premium-orange);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
  max-width: 540px;
}
.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--premium-orange);
  line-height: 1;
}
.hero-proof-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

/* ─── Urgência ──────────────────────────────────────────────────── */
.urgency-bar {
  background: var(--premium-orange);
  color: var(--white);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-small);
  font-weight: 500;
}
.urgency-bar strong { font-weight: 700; }
.urgency-countdown {
  display: inline-flex;
  gap: var(--space-1);
  margin-left: var(--space-2);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* ─── Form card (no hero) ──────────────────────────────────────── */
.form-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
}
@media (min-width: 768px) {
  .form-card { padding: var(--space-7); }
}
.form-card-head {
  margin-bottom: var(--space-5);
}
.form-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--premium-blue-900);
  margin-bottom: var(--space-2);
}
.form-card-sub {
  font-size: var(--fs-small);
  color: var(--gray-600);
}

/* ─── Multi-step ────────────────────────────────────────────────── */
.progress-bar {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.progress-segment {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  transition: background var(--t-base);
}
.progress-segment.is-active {
  background: var(--premium-orange);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-small);
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}
.progress-meta strong { color: var(--premium-blue-800); }

.step {
  display: none;
  animation: slideIn var(--t-slow);
}
.step.is-active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--premium-blue-900);
  margin-bottom: var(--space-5);
  line-height: 1.3;
}

/* Radio cards */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 480px) {
  .radio-grid { grid-template-columns: 1fr; }
}
.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
  background: var(--white);
}
.radio-card:hover { border-color: var(--premium-orange-dark); }
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--premium-blue-700);
  transition: color var(--t-base);
}
.radio-card:hover .radio-card-icon { color: var(--premium-orange); }
.radio-card:has(input:checked) .radio-card-icon { color: var(--premium-orange-dark); }
.radio-card-label {
  font-weight: 500;
  color: var(--gray-900);
  font-size: 0.95rem;
}
.radio-card:has(input:checked) {
  border-color: var(--premium-orange);
  background: var(--premium-orange-soft);
}

/* Botões de navegação */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  gap: var(--space-3);
}
.step-actions .btn-primary { flex: 1; }
.step-actions .btn-ghost { flex-shrink: 0; }

/* ─── Sucesso ───────────────────────────────────────────────────── */
.success-state {
  text-align: center;
  padding: var(--space-5) 0;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.success-icon .icon { width: 36px; height: 36px; }
.success-state h3 {
  font-size: 1.5rem;
  color: var(--premium-blue-900);
  margin-bottom: var(--space-3);
}
.success-state p {
  color: var(--gray-600);
  max-width: 320px;
  margin: 0 auto;
}

/* ─── Benefícios ────────────────────────────────────────────────── */
.benefits {
  background: var(--gray-50);
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-7);
  max-width: 720px;
  margin-inline: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--premium-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  color: var(--premium-blue-900);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-600);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--premium-orange-soft);
  color: var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.benefit-icon .icon { width: 26px; height: 26px; }
.benefit-title {
  font-size: var(--fs-h3);
  color: var(--premium-blue-900);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.benefit-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

/* ─── Comparativo ───────────────────────────────────────────────── */
.compare {
  background: var(--white);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 920px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.compare-col-bad {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.compare-col-good {
  background: linear-gradient(180deg, var(--premium-blue-800), var(--premium-blue-900));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.compare-col h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  font-weight: 700;
}
.compare-col-bad h3 { color: var(--gray-700); }
.compare-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
}
.compare-list .mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.compare-list .mark .icon { width: 14px; height: 14px; }
.compare-col-bad .mark  { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.compare-col-good .mark { background: rgba(245, 130, 32, 0.18); color: var(--premium-orange); }

/* ─── Depoimentos ───────────────────────────────────────────────── */
.testimonials {
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--premium-orange);
}
.testimonial-stars .icon { width: 16px; height: 16px; }

.hero-eyebrow .icon { width: 14px; height: 14px; }
.urgency-bar .icon  { width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }
.testimonial-quote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.55;
  flex: 1;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--premium-blue-700), var(--premium-blue-900));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-meta strong {
  color: var(--premium-blue-900);
  display: block;
  font-size: 0.9375rem;
}
.testimonial-meta span {
  color: var(--gray-600);
  font-size: var(--fs-small);
}

/* ─── CTA final ─────────────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(245, 130, 32, 0.20), transparent 70%),
    var(--premium-blue-900);
  color: var(--white);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-4);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.2;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
  max-width: 540px;
  margin-inline: auto;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--premium-blue-900);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--space-7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: var(--fs-small); }
.footer-links a:hover { color: var(--premium-orange); }
.footer-copy { font-size: var(--fs-small); }
