/* ============================================
   LEGACY MAKERS — Mentoria Landing Page
   Luxury Editorial Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-blue: #1E3A8A;
  --color-gold: #D4AF37;
  --color-gold-light: #E8C547;
  --color-green: #059669;
  --color-dark: #0F172A;
  --color-light: #F1F5F9;
  --color-red: #DC2626;
  --color-white: #FFFFFF;
  --color-deep-navy: #0a1628;
  --color-footer: #060d1a;

  --text: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.08);

  --section-padding: 100px 24px;
  --section-padding-desktop: 100px 24px;
  --radius-card: 16px;
  --radius-btn: 8px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* --- Progress Bar --- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.2s ease;
}

/* --- Sections --- */
.section-light {
  background: var(--color-white);
  padding: var(--section-padding);
}

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

.section-alt {
  background: var(--color-light);
  padding: var(--section-padding);
}

.section-evidence {
  background: var(--color-deep-navy);
  padding: var(--section-padding-desktop);
  position: relative;
}

.section-evidence::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0% 25%, transparent 0% 50%) 0 0 / 4px 4px;
  pointer-events: none;
}

.section-form {
  background: var(--color-dark);
  padding: var(--section-padding);
}

.section-cta-final {
  background: var(--color-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--color-gold);
}

.subheadline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* --- HERO Section --- */
.hero {
  background: var(--color-dark);
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero Form Wrapper (right column) */
.hero-form-wrapper {
  position: relative;
  z-index: 1;
}

/* Premissas List (hero) */
.premissas-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.premissas-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.premissas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Learn Section */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learn-card {
  text-align: center;
  padding: 32px 24px;
}

.learn-icon {
  color: var(--color-blue);
  margin-bottom: 16px;
}

.learn-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.learn-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* --- Buttons --- */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #E8C547);
  color: var(--text);
  padding: 18px 44px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  text-align: center;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-gold--small {
  padding: 12px 28px;
  font-size: 0.85rem;
}

.btn-gold--large {
  padding: 22px 48px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 500px;
}

.sub-cta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* --- Dores Grid (S02) --- */
.dores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.dor-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.dor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dor-icon {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.dor-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

.dores-footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* --- Comparacao (S03) --- */
.stat-banner {
  text-align: center;
  margin-bottom: 64px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--color-gold);
  display: inline;
  line-height: 1;
}

.stat-percent {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--color-gold);
  display: inline;
  line-height: 1;
}

.stat-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.comparacao-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.comparacao-col {
  padding: 32px;
  border-radius: 16px;
}

.comparacao-sem {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.comparacao-sem h3 {
  color: var(--color-red);
}

.comparacao-com {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.comparacao-com h3 {
  color: var(--color-green);
}

.comparacao-col h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.comparacao-col ul {
  list-style: none;
  padding: 0;
}

.comparacao-col li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparacao-sem li::before {
  content: "\2715";
  color: var(--color-red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.comparacao-com li::before {
  content: "\2713";
  color: var(--color-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.comparacao-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparacao-vs {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --- Evidence Section (S04) --- */
.resultado-destaque {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.resultado-fonte {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.resultado-destaque h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.resultado-destaque p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.resultado-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.resultado-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.resultado-card h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}

.resultado-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.resultado-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 16px;
}

/* --- Camadas (S05) --- */
.camadas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.camada-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.camada-card:nth-child(1) {
  border-top-color: var(--color-blue);
}

.camada-card:nth-child(2) {
  border-top-color: var(--color-gold);
}

.camada-card:nth-child(3) {
  border-top-color: var(--color-green);
}

.camada-numero {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.camada-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.camada-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.metodo-footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Entregas (S06) --- */
.entregas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.entrega-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.entrega-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.entrega-icon {
  color: var(--color-blue);
  margin-bottom: 16px;
}

.entrega-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
}

.entrega-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.investimento-box {
  background: var(--color-dark);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.investimento-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.investimento-valor {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.investimento-detalhe {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.investimento-parcelas {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* --- Mentor (S07) --- */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.mentor-photo-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mentor-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.mentor-bio h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.mentor-role {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: block;
}

.mentor-bio p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.mentor-destaque {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-blue);
  font-weight: 600;
}

.mentor-resultado {
  background: rgba(30, 58, 138, 0.05);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--color-blue);
  margin-bottom: 16px;
}

.mentor-credenciais {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.mentor-credenciais li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mentor-credenciais li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.mentor-conclusao {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

/* --- Qualificacao (S08) --- */
.qualificacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qualificacao-box {
  padding: 36px;
  border-radius: 16px;
}

.qualificacao-sim {
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.qualificacao-sim h3 {
  color: var(--color-green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.qualificacao-nao {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.qualificacao-nao h3 {
  color: var(--color-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.qualificacao-box ul {
  list-style: none;
  padding: 0;
}

.qualificacao-box li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.qualificacao-sim li::before {
  content: "\2713";
  color: var(--color-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.qualificacao-nao li::before {
  content: "\2715";
  color: var(--color-red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* --- FORM SECTION (S09) --- */
.form-container {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.form-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #D4AF37, #E8C547);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.form-progress-text {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 24px;
  text-align: center;
}

.form-hint {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Form Options Visual (Step 1) */
.form-options-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-option-card {
  cursor: pointer;
}

.form-option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-option-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.form-option-inner svg {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.form-option-card input:checked + .form-option-inner svg {
  color: var(--color-gold);
}

.form-option-label {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
}

.form-option-inner small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.form-option-card input:checked + .form-option-inner {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}

.form-option-card input:checked + .form-option-inner svg {
  color: var(--color-gold);
}

.form-option-card:hover .form-option-inner {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Form Options Radio List (Steps 2,3,5) */
.form-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-option-radio {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.form-option-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.form-option-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-option-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-option-radio span {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-option-checkbox span {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-option-radio input:checked + span {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-white);
}

.form-option-checkbox input:checked + span {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-white);
}

.form-option-radio:hover span {
  border-color: rgba(255, 255, 255, 0.25);
}

.form-option-checkbox:hover span {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Form Fields (Step 6) */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input.error {
  border-color: var(--color-red);
}

/* Form Textarea */
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px;
}

.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.form-btn-back {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-btn-back:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.4);
}

.form-btn-back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.form-btn-next {
  background: linear-gradient(135deg, #D4AF37, #E8C547);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  flex: 1;
  text-align: center;
}

.form-btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.form-btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.form-btn-submit {
  background: linear-gradient(135deg, #D4AF37, #E8C547);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  display: none;
  flex: 1;
  text-align: center;
}

.form-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.form-btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

/* Form Success (Step 7) */
.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success-icon {
  color: var(--color-green);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-success-alt {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* --- FAQ (S10) --- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- CTA Final (S11) --- */
.cta-final-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-final-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-final-garantia {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--color-footer);
  padding: 48px 24px;
  text-align: center;
}

.footer-empresa {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta-text {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- Exit Intent Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--color-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-white);
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal-box p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-skip {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 16px;
  transition: color 0.3s ease;
}

.modal-skip:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Fade Animation --- */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero Proof (micro depoimento) --- */
.hero-proof {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--color-gold);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 0 8px 8px 0;
}

.hero-proof p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
}

/* --- Quiz Pulse (hero CTA click on desktop) --- */
@keyframes quizPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.quiz-pulse {
  animation: quizPulse 0.8s ease-out;
  border-radius: var(--radius-card);
}

/* --- Q1 Card Feedback Melhorado --- */
.form-option-card input:checked + .form-option-inner {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
}

.form-option-card input:checked + .form-option-inner::after {
  content: "\2713";
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.form-option-inner {
  position: relative;
}

/* --- Radio List Feedback Melhorado --- */
.form-option-radio input:checked + span {
  color: var(--color-white);
  font-weight: 600;
}

.form-option-radio input:checked + span::before {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
    --section-padding-desktop: 64px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 24px;
  }

  .hero-form-wrapper {
    order: 2;
    margin-top: 16px;
  }

  .headline {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .premissas-list {
    display: none;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    right: 50%;
    transform: translateX(50%);
    bottom: -16px;
  }

  .subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .dores-grid {
    grid-template-columns: 1fr;
  }

  .comparacao-grid {
    grid-template-columns: 1fr;
  }

  .comparacao-divider {
    transform: rotate(90deg);
    margin: 16px auto;
  }

  .camadas-grid {
    grid-template-columns: 1fr;
  }

  .entregas-grid {
    grid-template-columns: 1fr;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
  }

  .qualificacao-grid {
    grid-template-columns: 1fr;
  }

  .form-options-visual {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 32px 20px;
  }

  .section-title br {
    display: none;
  }

  .hero .btn-gold,
  .section-cta-final .btn-gold,
  .sticky-cta .btn-gold {
    width: 100%;
    text-align: center;
  }

  .btn-gold--large {
    padding: 18px 32px;
  }

  .sticky-cta-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .sticky-cta-text {
    font-size: 0.85rem;
  }

  .modal-box {
    padding: 32px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .entregas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.8rem;
  }

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

  .stat-percent {
    font-size: 4rem;
  }

  .form-question {
    font-size: 1.2rem;
  }

  .hero-stat {
    padding: 12px 16px;
  }

  .hero-stat-number {
    font-size: 1.2rem;
  }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-gold:hover {
    transform: none;
  }

  .dor-card:hover {
    transform: none;
  }

  .resultado-card:hover {
    transform: none;
  }

  .entrega-card:hover {
    transform: none;
  }

  .form-step.active {
    animation: none;
  }

  .form-progress-bar {
    transition: none;
  }

  .sticky-cta {
    transition: none;
  }

  .form-btn-next:hover:not(:disabled) {
    transform: none;
  }

  .form-btn-submit:hover:not(:disabled) {
    transform: none;
  }
}


/* =============================================
   QUIZ FUNNEL - Novos estilos
   ============================================= */

/* Hero dual CTA */
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: #D4AF37;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  color: #E8C547;
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group .btn-gold,
  .hero-cta-group .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Gate de contato */
.gate-container {
  text-align: center;
  padding: 10px 0;
}

.gate-icon {
  margin-bottom: 16px;
}

.gate-preview-wrapper {
  margin: 20px auto;
  max-width: 200px;
}

.gate-preview {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.gate-preview-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.gate-preview-number {
  font-size: 3rem;
  font-weight: 800;
  color: #D4AF37;
  font-family: 'DM Sans', sans-serif;
}

.gate-preview-max {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
}

.gate-preview-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 4px;
}

.gate-trust {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* Resultado */
.result-container {
  text-align: center;
  padding: 10px 0;
}

.result-score-section {
  margin-bottom: 32px;
}

.result-score-badge {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
  flex-direction: column;
  padding: 20px;
}

.result-score-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.result-score-max {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.result-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid;
  font-size: 0.95rem;
}

.result-profile-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.result-profile-name {
  font-weight: 600;
}

.result-text-section {
  margin-bottom: 32px;
  text-align: left;
}

.result-summary {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
}

.result-detail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.result-dimensions {
  margin-bottom: 32px;
  text-align: left;
}

.result-dimensions-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.result-dimension {
  margin-bottom: 16px;
}

.result-dimension-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.result-dimension-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.result-dimension-score {
  font-size: 0.85rem;
  font-weight: 600;
}

.result-dimension-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.result-dimension-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.result-recommendation {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.result-recommendation-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.result-recommendation-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.result-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.result-cta-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.result-cta-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
