/* ============================================
   PNP — PERSONAL NA PRÁTICA
   Design System & Landing Page Styles
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --red-primary: #CC0000;
  --red-dark: #990000;
  --red-glow: #D10000;
  --red-light: #ff1a1a;
  --bg-black: #0A0A0A;
  --bg-charcoal: #1A1A1A;
  --bg-card-dark: #141414;
  --bg-card-hover: #1e1e1e;
  --white: #FFFFFF;
  --white-muted: #F5F5F5;
  --gray-light: #E8E8E8;
  --gray-mid: #888888;
  --gray-dark: #444444;
  --gold: #B8975A;
  --green-check: #22C55E;
  --amber: #F59E0B;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Container */
  --container-max: 1100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-red {
  color: var(--red-primary);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--gray-mid);
}

.text-center {
  text-align: center;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.5rem, 2.5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-light);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-light);
  line-height: 1.5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-black);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  max-width: 420px;
}

/* Pulse animation for CTAs */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(204, 0, 0, 0.7);
  }
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  text-decoration: none;
}

.navbar-logo img {
  height: 45px;
  width: auto;
}

.navbar-brand-name {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.navbar-cta .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Apenas escurece a esquerda para legibilidade do texto; direita fica limpa para o expert aparecer */
  background: linear-gradient(90deg,
      rgba(5, 5, 5, 0.82) 0%,
      rgba(5, 5, 5, 0.55) 35%,
      rgba(5, 5, 5, 0.15) 55%,
      transparent 70%);
}

/* Red glow removido — já vem do novo background */

.hero .container {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 52%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  width: fit-content;
}

.hero-badge::before {
  content: '🔥';
}

.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
  max-width: 500px;
}

.hero-cta-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.payment-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* .hero-image removido — expert integrado no background */

/* --- SOCIAL PROOF BAR --- */
.social-proof-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--red-dark) 100%);
  padding: var(--space-xl) 0;
}

.social-proof-bar .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
}

.proof-top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.proof-top-item + .proof-top-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: var(--space-md);
}

.proof-top-item .icon {
  font-size: 1rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 44px);
  align-items: start;
  text-align: center;
}

.proof-stat {
  padding: 6px 10px;
}

.proof-stat .value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.proof-stat .label {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

/* --- SECTION BASE --- */
.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: var(--space-sm);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.for-you-section .section-label,
.benefits-section .section-label,
.modules-section .section-label,
.transformation-section .section-label,
.journey-section .section-label,
.quiz-section .section-label,
.mission-values-section .section-label,
.expert-section .section-label,
.objections-section .section-label,
.testimonials-section .section-label,
.pricing-section .section-label,
.guarantee-section .section-label,
.faq-section .section-label,
.cta-final .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.comparison-section .section-label {
  color: var(--bg-black);
}

.for-you-section h1 .text-red,
.for-you-section h2 .text-red,
.for-you-section h3 .text-red,
.benefits-section h1 .text-red,
.benefits-section h2 .text-red,
.benefits-section h3 .text-red,
.modules-section h1 .text-red,
.modules-section h2 .text-red,
.modules-section h3 .text-red,
.transformation-section h1 .text-red,
.transformation-section h2 .text-red,
.transformation-section h3 .text-red,
.journey-section h1 .text-red,
.journey-section h2 .text-red,
.journey-section h3 .text-red,
.quiz-section h1 .text-red,
.quiz-section h2 .text-red,
.quiz-section h3 .text-red,
.mission-values-section h1 .text-red,
.mission-values-section h2 .text-red,
.mission-values-section h3 .text-red,
.expert-section h1 .text-red,
.expert-section h2 .text-red,
.expert-section h3 .text-red,
.objections-section h1 .text-red,
.objections-section h2 .text-red,
.objections-section h3 .text-red,
.testimonials-section h1 .text-red,
.testimonials-section h2 .text-red,
.testimonials-section h3 .text-red,
.pricing-section h1 .text-red,
.pricing-section h2 .text-red,
.pricing-section h3 .text-red,
.guarantee-section h1 .text-red,
.guarantee-section h2 .text-red,
.guarantee-section h3 .text-red,
.faq-section h1 .text-red,
.faq-section h2 .text-red,
.faq-section h3 .text-red,
.cta-final h1 .text-red,
.cta-final h2 .text-red,
.cta-final h3 .text-red,
.mid-cta h1 .text-red,
.mid-cta h2 .text-red,
.mid-cta h3 .text-red {
  color: var(--white);
}

.comparison-section h1 .text-red,
.comparison-section h2 .text-red,
.comparison-section h3 .text-red {
  color: var(--bg-black);
}

/* --- VIDEO / NOTEBOOK SECTION --- */
.video-section {
  position: relative;
  background: var(--bg-charcoal);
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.12) 0%, transparent 70%);
}

.video-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.video-wrapper img {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(204, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 0 40px rgba(204, 0, 0, 0.4);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(204, 0, 0, 0.6);
}

.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

/* --- "FOR YOU IF..." SECTION --- */
.for-you-section {
  background: var(--bg-black);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition-medium);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.2);
  background: var(--bg-card-hover);
}

.card:hover::before {
  background: linear-gradient(90deg, var(--red-primary), var(--red-dark));
}

.card-highlight {
  border-color: rgba(204, 0, 0, 0.3);
  background: rgba(204, 0, 0, 0.05);
}

.card-highlight::before {
  background: linear-gradient(90deg, var(--red-primary), var(--red-dark)) !important;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.card h4 {
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

/* --- BENEFITS CHIPS --- */
.benefits-section {
  background: var(--bg-charcoal);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-medium);
}

.benefit-chip:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-2px);
}

.benefit-chip .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.benefit-chip .text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* --- MODULES / PLANOS DE VOO --- */
.modules-section {
  background: var(--bg-black);
  position: relative;
}

.modules-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(204, 0, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.modules-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 850px;
  margin: 0 auto;
}

.modules-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red-primary), transparent);
}

.module-item {
  display: flex;
  gap: var(--space-md);
  position: relative;
}

.module-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

.module-content {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  flex: 1;
  transition: all var(--transition-medium);
}

.module-content:hover {
  border-color: rgba(204, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.module-content h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.module-content p {
  font-size: 0.88rem;
  color: var(--gray-mid);
}

/* --- TRANSFORMATION SECTION --- */
.transformation-section {
  background: var(--bg-charcoal);
  position: relative;
  overflow: hidden;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.transform-column {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.transform-before {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.transform-after {
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.2);
}

.transform-column h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.transform-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.transform-column li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--gray-light);
}

.transform-column li .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--red-primary);
}

.comparison-section {
  background: var(--white-muted);
}

.comparison-section h2 {
  color: var(--bg-black);
}

.comparison-section p {
  color: var(--gray-dark);
}

.comparison-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  font-size: 0.95rem;
}

.comparison-table thead th {
  background: rgba(0, 0, 0, 0.04);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: left;
  color: var(--bg-black);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody td {
  color: rgba(0, 0, 0, 0.82);
}

.comparison-table .col-center {
  width: 160px;
  text-align: center;
}

.comparison-table .col-no {
  color: var(--red-primary);
}

.comparison-table .col-yes {
  color: #16A34A;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1.1rem;
}

.mark-no {
  color: var(--red-primary);
  background: rgba(204, 0, 0, 0.08);
}

.mark-yes {
  color: #16A34A;
  background: rgba(34, 197, 94, 0.12);
}

.journey-section {
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.journey-step {
  position: relative;
  padding-top: 0;
}

.journey-dot {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--red-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.journey-week {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.journey-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.journey-desc {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.quiz-section {
  background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.22) 0%, rgba(10, 10, 10, 1) 60%);
  position: relative;
  overflow: hidden;
}

.quiz-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 14px 60px rgba(0, 0, 0, 0.55);
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.quiz-meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.quiz-progress {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quiz-bar {
  width: 44px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.quiz-bar.is-active {
  background: var(--red-primary);
}

.quiz-question {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 14px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.quiz-option:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(204, 0, 0, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.quiz-option.is-selected {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
}

.quiz-result {
  text-align: center;
}

.quiz-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.22);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.quiz-result-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.quiz-result-text {
  max-width: 680px;
  margin: 0 auto var(--space-md);
  color: rgba(255, 255, 255, 0.78);
}

.quiz-restart {
  margin-top: var(--space-sm);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  cursor: pointer;
}

.quiz-restart:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mission-values-section {
  background: var(--bg-charcoal);
  position: relative;
  overflow: hidden;
}

.mission-values-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.mv-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.mv-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(204, 0, 0, 0.14);
  border: 1px solid rgba(204, 0, 0, 0.28);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.mv-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.mv-list li::before {
  content: '✓';
  color: var(--green-check);
  font-weight: 900;
  line-height: 1.2;
  margin-top: 2px;
}

.mv-quote {
  margin: var(--space-lg) auto 0;
  max-width: 920px;
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.mv-quote p {
  color: rgba(255, 255, 255, 0.78);
}

.mv-quote-strong {
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.mv-quote-author {
  margin-top: var(--space-xs);
  color: var(--gray-mid);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.expert-section {
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.expert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.expert-mobile-image {
  display: none;
}

.expert-mobile-image img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
}

.expert-info > span:first-child {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.expert-info {
  max-width: 560px;
}

.expert-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 32px;
}

.credential-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 10px 10px 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .credential-item {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .expert-section {
    background-image: url('assets/secao-conheca-o-rodrigo-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .expert-section::before {
    content: none;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    justify-items: end;
    min-height: clamp(520px, 55vw, 720px);
  }
}

.expert-section .text-red {
  color: var(--white);
}

@media (max-width: 1024px) {
  .expert-mobile-image {
    display: block;
  }

  .expert-info {
    margin: 0 auto;
  }
}

.expert-image {
  position: relative;
}

.expert-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.expert-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 10%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.expert-info h2 {
  margin-bottom: var(--space-md);
}

.expert-info p {
  margin-bottom: var(--space-sm);
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
  background: var(--bg-card-dark);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: var(--bg-charcoal);
}

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-wrapper img {
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-video {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.video-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.video-poster-play::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(255, 255, 255, 0.92);
}

.video-poster:hover .video-poster-play {
  transform: translate(-50%, -50%) scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
}

.video-poster:focus-visible {
  outline: 3px solid rgba(204, 0, 0, 0.55);
  outline-offset: 3px;
}

.testimonial-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.testimonial-card .stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.testimonial-card p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gray-light);
  margin-bottom: var(--space-sm);
}

.testimonial-card .author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* --- PRICING SECTION --- */
.pricing-section {
  background: var(--bg-black);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card-dark);
  border: 2px solid rgba(204, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-dark));
}

.pricing-badge {
  display: inline-block;
  background: var(--red-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.price-original {
  font-size: 1.2rem;
  color: var(--gray-mid);
  text-decoration: line-through;
  margin-bottom: var(--space-xs);
}

.price-current {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.price-current .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-installment {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--gray-light);
}

.pricing-features li .check {
  color: var(--green-check);
  font-weight: bold;
}

.pricing-guarantee {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
  background: var(--bg-charcoal);
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.guarantee-box .icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.guarantee-box h3 {
  margin-bottom: var(--space-sm);
}

.guarantee-box p {
  max-width: 500px;
  margin: 0 auto;
}

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--bg-black);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

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

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

.faq-question:hover {
  color: var(--red-primary);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform var(--transition-medium);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* --- CTA FINAL --- */
.cta-final {
  background: var(--bg-charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final h2 {
  margin-bottom: var(--space-md);
}

.cta-final p {
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- URGENCY BAR --- */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red-primary));
  padding: var(--space-sm) 0;
  text-align: center;
}

.urgency-bar p {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-lg) 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-logo img {
  height: 35px;
  margin-bottom: var(--space-xs);
}

.footer p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* --- FLOATING CTA (MOBILE) --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: var(--space-sm);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(204, 0, 0, 0.3);
}

.floating-cta .btn {
  width: 100%;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children .animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children .animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children .animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-children .animate-on-scroll:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-children .animate-on-scroll:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-children .animate-on-scroll:nth-child(7) {
  transition-delay: 0.7s;
}

.stagger-children .animate-on-scroll:nth-child(8) {
  transition-delay: 0.8s;
}

.stagger-children .animate-on-scroll:nth-child(9) {
  transition-delay: 0.9s;
}

/* --- COUNT UP NUMBER --- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* --- OBJECTIONS SECTION --- */
.objections-section {
  background: var(--bg-black);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 850px;
  margin: 0 auto;
}

.objection-item {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-medium);
}

.objection-item:hover {
  border-color: rgba(204, 0, 0, 0.2);
  transform: translateY(-2px);
}

.objection-item .objection {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.objection-item .response {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

/* --- MID-PAGE CTA --- */
.mid-cta {
  padding: var(--space-xl) 0;
  text-align: center;
  background: var(--bg-charcoal);
  position: relative;
}

.mid-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

@media (max-width: 1024px) {
  .hero-content {
    max-width: 65%;
    text-align: left;
  }

  .hero .subtitle {
    max-width: 100%;
  }

  .hero-cta-area {
    align-items: flex-start;
  }

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

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

  .expert-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .transform-arrow {
    transform: rotate(90deg);
    padding: var(--space-sm) 0;
  }

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

@media (max-width: 768px) {
  .hero {
    /* tall enough to show text area + expert image in bg */
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 0;
    align-items: flex-start;
  }

  /* On mobile the picture/img inside hero-bg should be anchored to the top
     so the dark gym ceiling shows at the top (text area) and the expert
     appears in the lower half of the background */
  .hero-bg img {
    object-position: top center;
  }

  /* Change the overlay direction: opaque at top (text readable),
     transparent toward the middle/bottom (expert visible) */
  .hero-bg::after {
    background: linear-gradient(180deg,
        rgba(5, 5, 5, 0.80) 0%,
        rgba(5, 5, 5, 0.55) 30%,
        rgba(5, 5, 5, 0.15) 55%,
        transparent 72%);
  }

  .hero .container {
    padding-bottom: 56svh;
    /* leave lower half free for the expert in bg */
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .navbar-cta {
    display: none;
    /* Evita vazamento lateral; no mobile temos o floating CTA de qualquer jeito */
  }

  .navbar-logo {
    width: 100%;
  }

  .navbar-brand-name {
    margin-left: auto;
    text-align: right;
    font-size: 0.92rem;
  }

  .hero .subtitle {
    max-width: 100%;
  }

  .hero-cta-area {
    align-items: center;
  }

  .payment-badges {
    display: none;
  }

  .hero-badge {
    margin: 0 auto;
  }

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

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

  .comparison-table-wrap {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .comparison-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .comparison-table tr {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .comparison-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 12px 14px;
    font-size: 0.95rem;
    background: transparent;
  }

  .comparison-table tbody tr:nth-child(even) td {
    background: transparent;
  }

  .comparison-table td:first-child {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--bg-black);
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .comparison-table td[data-label] {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .comparison-table td[data-label]::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.55);
  }

  .comparison-table .col-center {
    width: auto;
    text-align: right;
  }

  .mark {
    width: 32px;
    height: 32px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-left: 0;
  }

  .journey-steps::before {
    top: 10px;
    bottom: 10px;
    left: 19px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .journey-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: var(--space-sm);
    row-gap: 6px;
    align-items: start;
  }

  .journey-dot {
    grid-row: span 3;
  }

  .journey-week {
    margin-top: 2px;
  }

  .journey-title {
    margin-top: 0;
    font-size: 1.1rem;
  }

  .journey-desc {
    margin-top: 0;
  }

  .quiz-card {
    padding: var(--space-md);
  }

  .quiz-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .quiz-bar {
    width: 34px;
  }

  .quiz-question {
    font-size: 1.25rem;
  }

  .quiz-option {
    padding: 12px 12px;
    font-size: 0.95rem;
  }

  .social-proof-bar {
    padding: var(--space-lg) 0;
  }

  .proof-top {
    justify-content: center;
  }

  .proof-top-item {
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    padding: 8px 12px;
  }

  .proof-top-item + .proof-top-item {
    border-left: none;
    padding-left: 0;
  }

  .proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
  }

  .proof-stat .label {
    font-size: 0.8rem;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-videos {
    grid-template-columns: 1fr;
  }

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

  .expert-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-cta {
    display: block;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .price-current {
    font-size: 2.8rem;
  }

  .modules-timeline::before {
    left: 20px;
  }

  .module-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .navbar-cta .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .expert-stats {
    grid-template-columns: 1fr;
  }
}

/* Fix for shorter mobile screens (like iPhone SE - 667px height) */
@media (max-width: 768px) and (max-height: 720px) {
  .hero {
    min-height: 850px;
    /* Expande bastante o fundo e empurra o expert para baixo */
    padding-top: 60px;
  }

  .hero-content {
    gap: 12px;
  }

  .hero .container {
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .hero .subtitle {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .hero-badge {
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .payment-badges {
    font-size: 0.7rem;
    gap: 8px;
  }
}
