/* ============================================
   JORNADA DA LUCRATIVIDADE ONLINE
   Design System — Paleta do manual de marketing
   ============================================ */

/* --- VARIABLES --- */
:root {
  /* Cores do manual de marketing */
  --vermelho: #DC4309;
  --vermelho-dark: #9E2F05;
  --laranja: #DC4309;
  --laranja-light: #F08B5A;
  --laranja-glow: rgba(220, 67, 9, 0.24);
  --marrom: #72401B;
  --marrom-dark: #4D2B12;

  /* Cores de suporte */
  --white: #FFFFFF;
  --off-white: #F2EDDA;
  --cream: #FBF6E8;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Semânticas */
  --success: #22C55E;
  --success-light: #DCFCE7;
  --error: #EF4444;
  --warning: #F59E0B;

  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaçamento */
  --section-padding: 60px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px var(--laranja-glow);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transições */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: linear-gradient(180deg, #f6f0e2 0%, #fffdf7 100%);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--marrom);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- UTILITY CLASSES --- */
.highlight {
  color: var(--laranja);
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(200, 66, 13, 0.08);
  border-radius: var(--radius-full);
}

.section-label.light {
  color: var(--laranja-light);
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a1a 0%, var(--vermelho) 52%, #b72a04 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(220, 67, 9, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(220, 67, 9, 0.48);
}

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

.btn-secondary {
  background: rgba(114, 64, 27, 0.08);
  color: var(--marrom);
  border: 1px solid rgba(114, 64, 27, 0.14);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(114, 64, 27, 0.12);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(135deg, var(--vermelho), var(--vermelho-dark));
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.top-bar p {
  font-family: var(--font-body);
  font-weight: 400;
}

.top-bar strong {
  font-weight: 700;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(242, 237, 218, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(114, 64, 27, 0.12);
  padding: 12px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-height) - 24px);
}

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

.logo-image img {
  width: auto;
  height: 54px;
  object-fit: contain;
  display: block;
}

.navbar .logo-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.navbar .logo-image img {
  filter: brightness(0.95) contrast(1.08);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff7a1a 0%, var(--vermelho) 52%, #b72a04 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 10px 22px rgba(220, 67, 9, 0.34);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(220, 67, 9, 0.44);
}

#oferta,
#main-offer-cta {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(77, 43, 18, 0.92), rgba(77, 43, 18, 0.84)),
    url('../images/hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 67, 9, 0.22), rgba(242, 237, 218, 0.06));
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--laranja);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(241, 90, 36, 0.15);
  border: 1px solid rgba(241, 90, 36, 0.3);
  border-radius: var(--radius-full);
  color: var(--laranja-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--laranja);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #f2edda, #f08b5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-cta-group {
  margin-bottom: 56px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-cta-group .btn {
  margin-bottom: 20px;
}

.hero-urgency {
  max-width: 700px;
  margin: 0 auto 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--laranja);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

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

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

/* --- PROBLEM SECTION --- */
.section-problem {
  background: var(--off-white);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  text-align: left;
  align-items: start;
}

.problem-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.problem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(58, 26, 10, 0.6), transparent);
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--vermelho);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateX(30px);
}

.problem-card.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s var(--ease-out);
}

.problem-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 66, 13, 0.08);
  border-radius: var(--radius-sm);
  color: var(--vermelho);
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--marrom);
}

.problem-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.problem-closing {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.section-cta-inline {
  text-align: center;
  margin-top: 28px;
}

.section-cta-inline p {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* --- SOLUTION SECTION --- */
.section-solution {
  background: #fffdf8;
  text-align: center;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
  text-align: left;
}

.solution-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.solution-image {
  width: 100%;
  display: block;
}

.course-screen-carousel {
  position: absolute;
  left: 26.7%;
  top: 30.4%;
  width: 52.0%;
  height: 45.5%;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.course-screen-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: courseScreenCarousel 18s infinite ease-in-out;
}

.course-screen-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
}

@keyframes courseScreenCarousel {
  0%, 18% { transform: translateX(0%); }
  25%, 43% { transform: translateX(-100%); }
  50%, 68% { transform: translateX(-200%); }
  75%, 93% { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

.solution-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, var(--laranja-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- MODULES SECTION --- */
.section-modules {
  background: var(--marrom-dark);
  text-align: center;
}

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

.section-modules .section-label {
  color: var(--laranja-light);
  background: rgba(241, 90, 36, 0.15);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.module-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--laranja), var(--vermelho));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.module-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 90, 36, 0.25);
  transform: translateY(-4px);
}

.module-card:hover::before {
  opacity: 1;
}

.module-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(241, 90, 36, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.module-header h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.module-topics {
  list-style: none;
  margin-bottom: 24px;
}

.module-topics li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.module-topics li:last-child {
  border-bottom: none;
}

.topic-check {
  color: var(--laranja);
  font-weight: 700;
  flex-shrink: 0;
}

.module-result {
  padding: 16px;
  background: rgba(241, 90, 36, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--laranja-light);
  border-left: 3px solid var(--laranja);
}

.module-result strong {
  color: var(--white);
}

.section-transformation {
  background: var(--off-white);
  text-align: center;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.transformation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.transformation-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.transformation-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- TESTIMONIALS SECTION --- */
.section-testimonials {
  background: var(--off-white);
  text-align: center;
}

.testimonials-proof-note {
  margin: -6px auto 18px;
  max-width: 760px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.testimonials-subtitle {
  font-size: 1.1rem;
  margin-top: -8px;
  margin-bottom: 8px;
}

.testimonials-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 10px 0; /* Espaço para o hover (translateY) */
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  cursor: grab;
}

.testimonials-track:active {
  cursor: grabbing;
}


.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

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


.testimonial-result-chip {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
  padding: 7px 11px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-card blockquote strong {
  color: var(--marrom);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--laranja), var(--vermelho));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.proof-icon {
  height: 24px;
  display: flex;
  align-items: center;
}

.proof-icon img {
  height: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.proof-item:hover .proof-icon img {
  filter: grayscale(0);
  opacity: 1;
}


/* --- AUTHORITY SECTION --- */
.section-authority {
  background: linear-gradient(180deg, #fffdf8 0%, #f2edda 100%);
  text-align: center;
}

.authority-proof-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.authority-proof-list span {
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--marrom);
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  border-radius: var(--radius-full);
  padding: 9px 14px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* --- SPEAKERS CAROUSEL --- */
.speakers-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 56px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  padding: 15px 0;
}

.speakers-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding-inline: clamp(32px, 5vw, 72px);
  will-change: transform;
  cursor: grab;
}

.speakers-track:active {
  cursor: grabbing;
}

.speaker-card {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.92);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 30px rgba(114, 64, 27, 0.08);
  transition: all var(--transition-base);
  border: 1px solid rgba(114, 64, 27, 0.12);
}

.speaker-card:hover {
  box-shadow: 0 20px 40px rgba(114, 64, 27, 0.14);
  transform: translateY(-6px);
  border-color: rgba(220, 67, 9, 0.2);
}

.speaker-photo {
  width: 100%;
  height: 330px;
  background: linear-gradient(180deg, rgba(220, 67, 9, 0.08), rgba(114, 64, 27, 0.1));
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  transition: transform var(--transition-slow);
}

.speaker-card:hover .speaker-photo img {
  transform: scale(1.04);
}

.speaker-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--marrom), var(--gray-600));
  border-radius: calc(var(--radius-xl) - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 0;
}

.speaker-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px 30px 32px;
}

.speaker-card h3 {
  font-size: 1.45rem;
  color: var(--marrom);
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.speaker-title {
  font-size: 0.8rem;
  color: var(--vermelho);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 18px;
  min-height: 3em;
}

.speaker-bio {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
}


/* --- ADVANTAGES SECTION --- */
.section-advantages {
  background: var(--off-white);
  text-align: center;
}

.advantages-comparison {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-col {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
}

.comparison-presencial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  opacity: 0.85;
}

.comparison-online {
  background: var(--white);
  border: 2px solid var(--laranja);
  box-shadow: var(--shadow-glow);
  position: relative;
  transform: scale(1.03);
}

.comparison-header {
  padding: 24px;
  text-align: center;
}

.comparison-header.negative {
  background: var(--gray-100);
}

.comparison-header.positive {
  background: linear-gradient(135deg, var(--laranja), var(--vermelho));
  color: var(--white);
}

.comparison-header h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.comparison-header.positive h3 {
  color: var(--white);
}

.comparison-price {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.comparison-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.comparison-col ul {
  list-style: none;
  padding: 24px;
}

.comparison-col ul li {
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-col ul li:last-child {
  border-bottom: none;
}

.negative-item {
  color: var(--gray-400);
}

.positive-item {
  color: var(--gray-700);
  font-weight: 500;
}

.neutral {
  color: var(--gray-600);
}

.comparison-total {
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.comparison-total span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.comparison-total strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.highlight-total strong {
  color: var(--laranja) !important;
  text-decoration: none !important;
  font-size: 1.4rem;
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gray-300);
  padding: 0 8px;
  align-self: center;
}

/* --- OFFER SECTION --- */
.section-offer {
  background: var(--marrom-dark);
  padding: 80px 0;
  text-align: center;
}

.offer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.offer-header {
  margin-bottom: 28px;
}

.offer-objection-text {
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  max-width: 760px;
}

.offer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.offer-stack {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.offer-stack h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.stack-item.bonus {
  color: var(--laranja-light);
}

.stack-check {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--laranja);
}

.stack-item span:nth-child(2) {
  flex: 1;
}

.stack-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.total-crossed {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
}

.offer-price-box {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--laranja);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--shadow-glow);
}

.offer-single-title {
  color: var(--white);
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 16px;
}

.offer-summary-list {
  width: 100%;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.offer-summary-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--laranja-light);
  font-weight: 700;
}

.offer-bonus-inline {
  width: 100%;
  margin: 10px 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer-bonus-inline strong {
  color: var(--laranja-light);
}

.price-anchor {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.price-anchor s {
  color: rgba(255, 255, 255, 0.45);
}

.price-main {
  text-align: center;
  margin-bottom: 28px;
}

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

.price-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
  margin-right: 4px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}

.price-cents {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 8px;
}

.price-installments {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.price-installments strong {
  color: var(--laranja-light);
}

.offer-cta {
  width: 100%;
  margin-bottom: 16px;
  font-size: 0.96rem;
  white-space: normal;
  line-height: 1.35;
  min-height: 64px;
}

.offer-limited-note {
  margin: -4px 0 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.offer-guarantee {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: left;
}

.guarantee-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.offer-guarantee strong {
  font-size: 0.85rem;
  color: var(--success);
  display: block;
  margin-bottom: 4px;
}

.offer-guarantee p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.offer-payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}


/* --- FAQ SECTION --- */
.section-faq {
  background: var(--white);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--marrom);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--laranja);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

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

/* --- ABOUT SUCESSO --- */
.section-about-sucesso {
  background: var(--off-white);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.about-sucesso-header {
  max-width: 800px;
  margin: 0 auto 56px;
}

.sucesso-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.sucesso-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sucesso-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(241, 90, 36, 0.2);
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--laranja);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
}

.sucesso-stat-card .stat-label {
  color: var(--gray-700);
}

/* --- FOOTER --- */
.footer {
  background: linear-gradient(180deg, #2f180c 0%, #1f1007 100%);
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 0.75rem;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.footer-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
  color: var(--laranja);
  background: rgba(241, 90, 36, 0.16);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FLOATING CTA (MOBILE) --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(30, 13, 5, 0.95);
  backdrop-filter: blur(10px);
  z-index: 98;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 1px solid rgba(241, 90, 36, 0.3);
}

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

.floating-cta .btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  z-index: 99;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

/* --- LEAD MODAL --- */
.lead-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.lead-modal.open {
  display: flex;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 16, 7, 0.72);
  backdrop-filter: blur(6px);
}

.lead-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e1 100%);
  border-radius: 28px;
  border: 1px solid rgba(114, 64, 27, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  padding: 28px;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(114, 64, 27, 0.08);
  color: var(--marrom);
  font-size: 1.8rem;
  line-height: 1;
}

.lead-modal-header {
  padding-right: 48px;
  margin-bottom: 22px;
}

.lead-modal-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(220, 67, 9, 0.12);
  color: var(--vermelho);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lead-modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.lead-modal-header p {
  color: var(--gray-600);
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-field {
  display: grid;
  gap: 8px;
}

.lead-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--marrom);
}

.lead-field input,
.lead-field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 64, 27, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  font: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.lead-field input:focus,
.lead-field select:focus {
  border-color: rgba(220, 67, 9, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 67, 9, 0.12);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 6px;
}

.lead-actions .btn {
  min-width: 200px;
}

.lead-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .modules-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
    --header-height: 72px;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .nav-cta-btn {
    font-size: 0.7rem;
    padding: 10px 18px;
  }

  .navbar-inner {
    gap: 12px;
  }

  .navbar .logo-image {
    padding: 6px 10px;
    border-radius: 14px;
  }

  .logo-image img {
    height: 42px;
  }

  .hero {
    padding: 84px 0 72px;
    min-height: auto;
  }

  .hero-urgency {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-stats {
    gap: 24px;
  }

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

  .stat-divider {
    height: 28px;
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .problem-image-wrapper {
    aspect-ratio: 16/9;
  }

  .solution-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .course-screen-carousel {
    left: 26.3%;
    top: 30.1%;
    width: 52.6%;
    height: 45.9%;
    border-radius: 2px;
  }

  .testimonials-carousel-wrapper,
  .speakers-carousel-wrapper {
    margin-top: 28px;
    padding: 6px 0;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }

  .testimonials-track,
  .speakers-track {
    gap: 14px;
  }

  .testimonial-card {
    width: min(76vw, 260px);
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .testimonial-result-chip {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .testimonial-card blockquote {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .testimonial-author {
    gap: 10px;
    padding-top: 12px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.72rem;
  }

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

  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .speaker-card {
    width: min(82vw, 310px);
    border-radius: var(--radius-md);
  }

  .speaker-photo {
    height: 300px;
  }

  .speaker-placeholder {
    border-radius: 0;
    font-size: 1.8rem;
  }

  .speaker-info {
    padding: 22px 20px 24px;
  }

  .speaker-card h3 {
    font-size: 1.14rem;
  }

  .speaker-title {
    font-size: 0.68rem;
    line-height: 1.35;
    margin-bottom: 12px;
    min-height: auto;
  }

  .speaker-bio {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal-panel {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .lead-modal-header {
    padding-right: 40px;
  }

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

  .lead-actions {
    flex-direction: column-reverse;
  }

  .lead-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .advantages-comparison {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-online {
    transform: scale(1);
    order: -1;
  }

  .comparison-vs {
    display: none;
  }

  .social-proof-bar {
    flex-direction: column;
    gap: 16px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .authority-proof-list {
    flex-direction: column;
    align-items: stretch;
  }

  .price-amount {
    font-size: 3.5rem;
  }

  .btn-lg {
    padding: 18px 32px;
    font-size: 0.9rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .floating-cta {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .footer {
    padding-bottom: 32px;
  }
}

@media (min-width: 769px) {
  .floating-cta {
    display: none !important;
  }
}

/* --- PRINT STYLES --- */
@media print {
  .top-bar,
  .navbar,
  .floating-cta,
  .whatsapp-float,
  .hero-particles {
    display: none;
  }
}
