/* --- NON-CRITICAL STYLES --- */
/* Este arquivo contém todos os estilos fora da dobra e pode ser deferido */

:root {
  --bg-dark: #0a0a0c;
  --bg-card: #121216;
  --bg-card-hover: #181820;
  --color-blue: #0055ff;
  --color-blue-glow: rgba(0, 85, 255, 0.15);
  --color-red: #ff2a44;
  --color-red-glow: rgba(255, 42, 68, 0.15);
  --color-orange: #ff6b00;
  --color-orange-hover: #e55a00;
  --color-orange-glow: rgba(255, 107, 0, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --font-headings: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 960px;
  --border-radius: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cta-button {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  padding: 18px 28px;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--color-orange), #ff8c00);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--color-orange-glow);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
  background: linear-gradient(135deg, #ff8c00, var(--color-orange));
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px var(--color-orange-glow);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  animation: shine 6s infinite ease-out;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title span.blue {
  color: var(--color-blue);
  text-shadow: 0 0 10px var(--color-blue-glow);
}

.section-title span.red {
  color: var(--color-red);
  text-shadow: 0 0 10px var(--color-red-glow);
}

.section-title span.orange {
  color: var(--color-orange);
  text-shadow: 0 0 10px var(--color-orange-glow);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 40px 0 60px;
  background: radial-gradient(circle at top, rgba(0, 85, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%),
              radial-gradient(circle at bottom right, rgba(255, 42, 68, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
  overflow: hidden;
}

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

.hero-header, .hero-details {
  text-align: center;
  width: 100%;
}

.hero-image {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-student-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 16px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 85, 255, 0.15);
  transition: var(--transition-smooth);
}

.hero-student-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 107, 0, 0.2);
}

.hero-student-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-student-caption {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero h2 span.highlight {
  color: var(--color-orange);
}

.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets-container {
  margin-bottom: 25px;
  text-align: left;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--color-orange);
  fill: currentColor;
}

/* --- SOCIAL PROOF (TESTIMONIALS) --- */
.testimonials {
  background-color: rgba(255, 255, 255, 0.01);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: var(--font-headings);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 85, 255, 0.2);
  box-shadow: 0 15px 35px var(--color-blue-glow);
}

.testimonial-card:nth-child(even):hover {
  border-color: rgba(255, 42, 68, 0.2);
  box-shadow: 0 15px 35px var(--color-red-glow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-blue);
}

.testimonial-card:nth-child(even) .testimonial-avatar {
  border-color: var(--color-red);
}

.testimonial-info h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars {
  color: #ffb700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-highlight {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* --- PAIN POINTS --- */
.pain-points {
  background-color: rgba(255, 42, 68, 0.02);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.pain-card {
  background-color: var(--bg-card);
  border-left: 4px solid var(--color-red);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateX(5px);
  background-color: var(--bg-card-hover);
}

.pain-card svg {
  color: var(--color-red);
  flex-shrink: 0;
}

.pain-card p {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.05rem;
}

.pain-intro {
  text-align: center;
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 1.1rem;
}

/* --- SOLUTION --- */
.solution {
  text-align: center;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.05) 0%, rgba(0, 0, 0, 0) 80%);
}

.solution-box {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 4px solid var(--color-blue);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.solution-box h3 {
  font-size: 1.8rem;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.solution-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.solution-box p.accent-text {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- MODULES --- */
.modules {
  background-color: rgba(255, 255, 255, 0.01);
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.module-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.module-header {
  background: linear-gradient(135deg, var(--bg-card-hover), rgba(0, 85, 255, 0.1));
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-card:nth-child(even) .module-header {
  background: linear-gradient(135deg, var(--bg-card-hover), rgba(255, 42, 68, 0.1));
}

.module-badge {
  font-family: var(--font-headings);
  font-size: 1rem;
  color: var(--color-blue);
  background: rgba(0, 85, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 85, 255, 0.3);
}

.module-card:nth-child(even) .module-badge {
  color: var(--color-red);
  background: rgba(255, 42, 68, 0.1);
  border: 1px solid rgba(255, 42, 68, 0.3);
}

.module-header h3 {
  font-size: 1.4rem;
  margin-top: 5px;
}

.module-body {
  padding: 30px;
}

.module-body p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.module-list {
  list-style: none;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.module-list li svg {
  color: var(--color-blue);
}

.module-card:nth-child(even) .module-list li svg {
  color: var(--color-red);
}

/* --- BENEFITS --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-3px);
  background-color: var(--bg-card-hover);
  border-color: rgba(255, 107, 0, 0.2);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
  font-size: 1.8rem;
}

.benefit-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- TARGET AUDIENCE --- */
.target {
  background-color: rgba(0, 85, 255, 0.01);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 35px;
}

.target-item {
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
}

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

.target-item svg {
  color: var(--color-blue);
  flex-shrink: 0;
}

.target-item p {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

/* --- COMPARISON --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.comp-column {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comp-column.negative {
  border-top: 4px solid var(--color-red);
}

.comp-column.positive {
  border-top: 4px solid var(--color-blue);
  box-shadow: 0 15px 40px rgba(0, 85, 255, 0.05);
}

.comp-header {
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-header h3 {
  font-size: 1.4rem;
}

.comp-column.negative .comp-header h3 {
  color: var(--color-red);
}

.comp-column.positive .comp-header h3 {
  color: var(--color-blue);
}

.comp-body {
  padding: 25px;
}

.comp-list {
  list-style: none;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.comp-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.comp-column.negative .comp-list svg {
  color: var(--color-red);
}

.comp-column.positive .comp-list svg {
  color: var(--color-blue);
}

.comp-column.negative .comp-list li {
  color: var(--text-secondary);
}

.comp-column.positive .comp-list li {
  color: var(--text-primary);
  font-weight: 500;
}

/* --- BONUSES --- */
.bonuses {
  background-color: var(--bg-dark);
  position: relative;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.bonus-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 85, 255, 0.2);
  box-shadow: 0 15px 35px var(--color-blue-glow);
}

.bonus-badge {
  display: inline-block;
  background-color: rgba(0, 85, 255, 0.1);
  border: 1px solid var(--color-blue);
  color: #38bdf8;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bonus-value-tag {
  color: var(--color-orange);
  font-weight: 700;
  margin-left: 5px;
}

.bonus-card h3 {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.bonus-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.bonus-flash-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1012 100%);
  border: 1px solid rgba(255, 42, 68, 0.25);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 15px 35px rgba(255, 42, 68, 0.05);
  transition: var(--transition-smooth);
}

.bonus-flash-card:hover {
  border-color: rgba(255, 42, 68, 0.5);
  box-shadow: 0 20px 45px rgba(255, 42, 68, 0.1);
}

.bonus-flash-badge {
  display: inline-block;
  background-color: rgba(255, 42, 68, 0.15);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 68, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 6px rgba(255, 42, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 68, 0); }
}

.bonus-flash-card h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.bonus-flash-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.bonus-total-box {
  background-color: var(--bg-card);
  border: 2px dashed rgba(255, 107, 0, 0.3);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.bonus-total-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.05rem;
}

.total-row:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
}

.total-label {
  color: var(--text-secondary);
  text-align: left;
}

.total-value {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.total-row.package-total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.total-row.package-total .total-label {
  color: var(--text-primary);
  text-transform: uppercase;
}

.total-row.package-total .total-value {
  color: var(--text-muted);
  text-decoration: line-through;
}

.offer-row {
  margin: 25px 0;
}

.offer-label {
  font-size: 1.1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.offer-price {
  font-family: var(--font-headings);
  font-size: 3rem;
  color: var(--color-orange);
  font-weight: 700;
  text-shadow: 0 0 20px var(--color-orange-glow);
}

/* --- PRICING --- */
.pricing {
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
}

.price-card {
  background-color: var(--bg-card);
  border: 2px solid var(--color-orange);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 35px var(--color-orange-glow);
  position: relative;
}

.price-card::before {
  content: 'OFERTA EXCLUSIVA';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-orange);
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 18px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px var(--color-orange-glow);
}

.price-card-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.price-elements {
  margin: 25px 0;
}

.price-old {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.price-new {
  font-family: var(--font-headings);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  text-shadow: 0 0 25px var(--color-orange-glow);
}

.price-new span {
  font-size: 2.2rem;
  vertical-align: super;
}

.price-recurrence {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.price-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* --- PRICE RECAP --- */
.price-recap-container {
  max-width: 800px;
  margin: 0 auto 35px;
  text-align: center;
  padding: 0 10px;
}

.price-recap-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.price-recap-title span.orange {
  color: var(--color-orange);
}

.price-recap-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.recap-list {
  max-width: 520px;
  margin: 0 auto 20px;
  text-align: left;
}

.recap-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.recap-item:last-child {
  margin-bottom: 0;
}

.recap-check {
  color: var(--color-orange);
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.15rem;
  line-height: 1.5rem;
  flex-shrink: 0;
}

.recap-text {
  text-align: left;
  width: 100%;
  line-height: 1.5;
}

.recap-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 22px 0;
}

.recap-summary {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.recap-value-real {
  margin-bottom: 8px;
}

.recap-value-real span {
  text-decoration: line-through;
  color: var(--text-muted);
}

.recap-value-today {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.recap-value-today strong {
  color: var(--color-orange);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  text-shadow: 0 0 10px var(--color-orange-glow);
  white-space: nowrap;
}

/* --- INSTRUCTOR BIO --- */
.bio {
  background-color: rgba(255, 255, 255, 0.01);
}

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

.bio-img-container {
  display: flex;
  justify-content: center;
}

.bio-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--color-red-glow);
}

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

.bio-subtitle {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--color-red);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.bio-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.bio-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.7;
}

/* --- FAQ --- */
.faq {
  background-color: rgba(255, 255, 255, 0.01);
}

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

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  user-select: none;
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-orange);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 20px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* --- FOOTER --- */
footer {
  background-color: #050507;
  padding: 40px 0;
  border-top: 2px solid var(--color-blue);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer .footer-contact {
  margin-bottom: 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

footer .footer-contact a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

footer .footer-contact a:hover {
  text-decoration: underline;
}

footer p.disclaimer {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- RESPONSIVE DESKTOP --- */
@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .hero-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 30px 50px;
    text-align: left;
  }
  
  .hero-header {
    grid-column: 1;
    grid-row: 1;
    text-align: left !important;
  }
  
  .hero-details {
    grid-column: 1;
    grid-row: 2;
    text-align: left !important;
  }
  
  .hero-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  
  .hero-bullets-container {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  
  .hero h2 {
    font-size: 3.2rem;
  }
  
  .hero .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-trust {
    justify-content: flex-start;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .bio-grid {
    grid-template-columns: 320px 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .bio-content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .price-recap-title {
    font-size: 1.4rem;
  }
  
  .recap-item {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .price-recap-card {
    padding: 25px 20px;
  }
  
  .cta-button {
    padding: 16px 12px;
    font-size: clamp(1rem, 5.2vw, 1.35rem);
    white-space: nowrap;
  }
}
