/* ==========================================
   Prof Elias - landing-premium.css
   Estilo Padrão Ouro para LPs da Hotmart
   ========================================== */

:root {
  --azul-escuro: #021224;
  --azul-primario: #0a2b52;
  --amarelo: #fee600;
  --amarelo-escuro: #ffd700;
  --cinza-claro: #f5f7fb;
  --cinza-card: #f0f4f8;
  --cinza-linha: rgba(10, 43, 82, 0.08);
  --texto-base: #1f2933;
  --texto-suave: #4a5568;
  --texto-medio: #2d3748;
  --shadow-soft: 0 24px 60px rgba(2, 18, 36, 0.18);
  --shadow-card: 0 12px 40px rgba(10, 43, 82, 0.12);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--cinza-claro);
  color: var(--texto-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 4.5rem 0;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 18, 36, 0.75) 0%, rgba(10, 43, 82, 0.65) 45%, rgba(10, 43, 82, 0.8) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 230, 0, 0.16);
  border: 1px solid rgba(254, 230, 0, 0.35);
  color: var(--amarelo);
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(254, 230, 0, 0.15);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(254, 230, 0, 0.25);
}

.hero-badge i {
  animation: starPulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-title span {
  color: var(--amarelo) !important;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge {
  background: transparent;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  color: #fff;
  flex: 1 1 210px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.trust-badge:hover {
  transform: scale(1.05);
}

.trust-badge i {
  font-size: 1.5rem;
  color: #38ef7d;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.trust-badge strong {
  color: #fff;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.trust-badge small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-aside {
  display: flex;
  justify-content: center;
}

.hero-summary-card {
  width: 100%;
  max-width: 400px;
  background: transparent;
  padding: 26px;
  border: none;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 14px;
}

/* ===== STATS CARDS ===== */
.stat-box {
  background: transparent;
  border: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
  transform: scale(1.08);
}

.stat-box i {
  font-size: 2.2rem;
  color: var(--amarelo);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 16px rgba(254, 230, 0, 0.5));
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(2, 18, 36, 0.95), 0 0 24px rgba(2, 18, 36, 0.9);
}

.stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(2, 18, 36, 0.95), 0 0 20px rgba(2, 18, 36, 0.9);
}

/* ===== SEÇÕES ===== */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--azul-escuro);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title span {
  color: #d97706 !important;
}

.section-subtitle {
  font-size: 1.14rem;
  color: var(--texto-suave);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.section-visual img {
  max-width: 720px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(10, 43, 82, 0.12);
  object-fit: cover;
}

.lead {
  color: #243240;
}

/* ===== BOTÕES ===== */
.btn-cta {
  position: relative;
  background: linear-gradient(120deg, var(--amarelo) 0%, var(--amarelo-escuro) 100%);
  color: var(--azul-escuro);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 48px;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 18px 40px rgba(254, 230, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-size: 180%;
  cursor: pointer;
  will-change: transform;
  animation: ctaPulse 3s ease-in-out infinite;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 65px rgba(254, 230, 0, 0.6);
  background-position: 100% 0;
  color: var(--azul-escuro);
  animation: none;
}

.btn-cta:hover::after {
  opacity: 1;
}

.btn-cta:hover i {
  transform: translateX(4px);
}

.btn-cta:focus-visible {
  outline: 3px solid rgba(254, 230, 0, 0.8);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(254, 230, 0, 0.2), 0 28px 65px rgba(254, 230, 0, 0.6);
}

/* ===== MEDIA COMPASS / COURSE ASSETS ===== */
.lp-course-media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(10, 43, 82, 0.12);
  background: #fff;
}

.lp-course-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-course-media--wide {
  aspect-ratio: 1.75 / 1;
}

.lp-course-media--square {
  aspect-ratio: 1 / 1;
}

.lp-course-media--audience {
  aspect-ratio: 1.5 / 1;
}

.lp-course-media--square img {
  object-position: center center;
}

.lp-course-media--audience img {
  object-position: center center;
}

.py-6 img.rounded-4 {
  border-radius: 24px !important;
  box-shadow: 0 24px 55px rgba(10, 43, 82, 0.12) !important;
  object-fit: cover;
}

/* ===== AUDIENCE & BENEFIT CARDS ===== */
.audience-card {
  border-color: var(--amarelo) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow-card) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(10, 43, 82, 0.16) !important;
}

.audience-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-escuro) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 24px rgba(10, 43, 82, 0.16);
}

.benefit-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 32px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: default;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254, 230, 0, 0.22) 0%, rgba(10, 43, 82, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 230, 0, 0.6);
  border-top: 4px solid var(--amarelo);
  box-shadow: 0 24px 55px rgba(10, 43, 82, 0.2);
}

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

.benefit-card>* {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, rgba(254, 230, 0, 0.95) 0%, rgba(255, 215, 0, 0.95) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 28px rgba(10, 43, 82, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 16px 36px rgba(10, 43, 82, 0.25);
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--azul-escuro);
}

.benefit-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--azul-escuro);
}

.benefit-text {
  color: var(--texto-suave);
  line-height: 1.75;
}

.benefit-text strong {
  color: var(--azul-escuro);
  font-weight: 600;
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 3px solid #00c853;
  max-width: 720px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
}

.guarantee-icon i {
  font-size: 2.5rem;
  color: #fff;
}

/* ===== CONTEÚDO DO CURSO / ACCORDION MODULES ===== */
.module-accordion {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 43, 82, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 40px rgba(10, 43, 82, 0.08);
}

.module-accordion:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 230, 0, 0.6);
  border-left: 5px solid var(--amarelo);
  box-shadow: 0 22px 52px rgba(10, 43, 82, 0.14);
}

.module-header {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-header:focus-visible {
  outline: 3px solid rgba(254, 230, 0, 0.6);
  outline-offset: -3px;
}

.module-header:hover {
  background: #fef8cc;
}

.module-accordion.active .module-header {
  background: linear-gradient(120deg, rgba(254, 230, 0, 0.65) 0%, rgba(255, 215, 0, 0.85) 100%);
}

.module-number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: linear-gradient(120deg, var(--azul-escuro) 0%, var(--azul-primario) 100%);
  color: var(--amarelo);
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.module-accordion.active .module-number-badge {
  background: #fff;
  color: var(--azul-escuro);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.module-content-wrap {
  flex: 1;
}

.module-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}

.module-description {
  color: var(--texto-suave);
  margin-bottom: 0;
  font-size: 0.97rem;
}

.module-icon {
  font-size: 1.8rem;
  color: var(--amarelo);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-header:hover .module-icon {
  transform: scale(1.15);
}

.module-accordion.active .module-icon {
  color: var(--azul-escuro);
  transform: rotate(180deg);
}

.module-accordion.active:hover .module-icon {
  transform: rotate(180deg) scale(1.15);
}

.module-details {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
}

.module-accordion.active .module-details {
  padding: 0 30px 24px 30px;
  max-height: 800px;
  opacity: 1;
}

.module-topics {
  padding: 20px 24px;
  background: var(--cinza-card);
  border-radius: 14px;
  margin-top: 18px;
}

.module-topics li {
  color: var(--texto-medio);
  margin-bottom: 8px;
  line-height: 1.7;
}

.module-topics li strong {
  color: var(--azul-escuro);
}

/* ===== MÓDULOS COMPACTOS ===== */
.module-compact {
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(10, 43, 82, 0.06);
  margin-bottom: 8px;
  overflow: hidden;
}

.module-compact-header {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--azul-escuro);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.module-compact-header:hover {
  background: rgba(254, 230, 0, 0.08);
}

.module-compact-header i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  color: var(--amarelo);
}

.module-compact:hover {
  border-left-color: var(--amarelo);
  box-shadow: 0 4px 12px rgba(10, 43, 82, 0.12);
}

.module-compact.active {
  border-left-color: var(--amarelo);
  box-shadow: 0 4px 12px rgba(10, 43, 82, 0.12);
}

.module-compact.active .module-compact-header {
  background: rgba(254, 230, 0, 0.15);
}

.module-compact.active .module-compact-header i {
  transform: rotate(180deg);
}

.module-compact-description {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  color: var(--texto-suave);
  font-size: 0.88rem;
  line-height: 1.6;
}

.module-compact.active .module-compact-description {
  max-height: 200px;
  opacity: 1;
  padding: 0 16px 12px 16px;
}

/* ===== TABS DE MÓDULOS ===== */
.module-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #fff;
  border: 2px solid rgba(10, 43, 82, 0.1);
  color: var(--azul-escuro);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  border-color: var(--amarelo);
  background: rgba(254, 230, 0, 0.1);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(120deg, var(--amarelo) 0%, var(--amarelo-escuro) 100%);
  border-color: var(--amarelo);
  color: var(--azul-escuro);
  box-shadow: 0 4px 12px rgba(254, 230, 0, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===== PRICING ===== */
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 60px 40px 40px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--amarelo);
  max-width: 520px;
  margin: 0 auto;
  overflow: visible;
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 50%, #c62828 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 4px 16px rgba(183, 28, 28, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  z-index: 2;
}

.price-badge::before,
.price-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: #7f1010;
}

.price-badge::before {
  left: 0;
  border-left-color: #7f1010;
}

.price-badge::after {
  right: 0;
  border-right-color: #7f1010;
}

.price-badge svg {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

.price-old {
  font-size: 1.4rem;
  color: rgba(31, 41, 51, 0.5);
  text-decoration: line-through;
  margin-bottom: 8px;
  font-weight: 400;
}

.price-current {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.price-installments {
  color: var(--texto-suave);
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 500;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 43, 82, 0.08);
  color: var(--texto-medio);
  transition: all 0.3s ease;
}

.price-feature:hover {
  transform: translateX(4px);
  color: var(--azul-primario);
}

.price-feature i {
  font-size: 1.25rem;
  color: #38ef7d;
  filter: drop-shadow(0 2px 4px rgba(56, 239, 125, 0.2));
}

.price-feature span {
  font-size: 1.05rem;
}

/* ===== TESTIMONIALS & PROFESSOR ===== */
.testimonial-card,
.professor-card {
  border-radius: 22px !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid rgba(10, 43, 82, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover,
.professor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(10, 43, 82, 0.16) !important;
}

/* ===== KEYFRAMES ===== */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(254, 230, 0, 0.4);
  }
  50% {
    box-shadow: 0 22px 50px rgba(254, 230, 0, 0.5);
  }
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 767.98px) {
  .module-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 50px 24px 32px;
  }

  .faq-question {
    word-break: break-word;
  }

  .hero-section {
    min-height: auto;
    padding: 2.5rem 0 3rem;
    text-align: center;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    position: relative;
  }

  .hero-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    margin-bottom: 12px;
    gap: 6px;
  }

  .hero-badge i {
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 16px;
  }

  .btn-cta {
    width: auto;
    font-size: 0.95rem;
    padding: 12px 28px;
    letter-spacing: 0.05em;
  }

  .hero-trust-group {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .trust-badge {
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .trust-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  }

  .trust-badge strong {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  }

  .trust-badge br,
  .trust-badge small {
    display: none !important;
  }

  .hero-aside {
    justify-content: center;
    margin-top: 1.5rem !important;
  }

  .hero-summary-card {
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
  }

  .stat-box {
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    align-items: center;
    text-align: center;
  }

  .stat-box:hover {
    transform: scale(1.05);
    background: transparent !important;
    box-shadow: none !important;
  }

  .stat-box i {
    font-size: 1.6rem;
    margin-bottom: -2px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 12px rgba(254, 230, 0, 0.4));
  }

  .stat-number {
    font-size: 1.6rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(2, 18, 36, 0.9), 0 0 24px rgba(2, 18, 36, 0.8);
  }

  .stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(2, 18, 36, 0.9), 0 0 16px rgba(2, 18, 36, 0.8);
  }

  .benefit-card,
  .guarantee-box {
    padding: 28px 22px;
  }

  .lp-course-media--square {
    max-width: 100%;
  }
}
