/* ===================================================
   UNIVERSE LASHES — curso-efectos.css
   Estilos específicos para la Landing Page de Cursos
   =================================================== */

/* ── Prevent horizontal scroll during animations ─────────────────────── */
body { overflow-x: hidden; }

/* ── Navbar Limpio (Sin links extra para evitar fugas) ─────────────────────── */
.nav-links, .nav-hamburger, .nav-mobile {
  display: none !important;
}

#navbar .nav-inner {
  justify-content: center;
}
#navbar .nav-logo {
  margin: 0 auto;
}

/* ── Hero Tipográfico Modificado ─────────────────────── */
.hero-course {
  overflow: visible;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  min-height: auto;
}

.hero-course .hero-bg {
  position: fixed;
}

.hero-course .hero-content {
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-course .hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  text-transform: none;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-course .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: justify;
}

.hero-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-info-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
  }
}

/* ─────────────────────────────────────────────────────
   HERO: Clases de animación aisladas (h-anim-*)
   El IntersectionObserver sólo busca .reveal-up/left/right
   → estas clases son invisibles para él.
   animation-delay viene en el inline style de cada elemento.
   ───────────────────────────────────────────────────── */

@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hFadeLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hFadeRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

.h-anim-up {
  opacity: 0;
  animation: hFadeUp 1.0s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.h-anim-left {
  opacity: 0;
  animation: hFadeLeft 1.0s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.h-anim-right {
  opacity: 0;
  animation: hFadeRight 1.0s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-info-card {
  padding: 1.75rem 1.25rem;
  background: linear-gradient(145deg, rgba(20, 10, 30, 0.8) 0%, rgba(10, 5, 20, 0.95) 100%);
  border: 1px solid rgba(160, 90, 220, 0.15);
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(10px);
  height: 100%;
  transition: all var(--duration-med) var(--ease-luxury);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(160, 90, 220, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(160, 90, 220, 0.4);
  box-shadow: 0 12px 25px rgba(160, 90, 220, 0.25), inset 0 0 20px rgba(160, 90, 220, 0.1);
}

.hero-info-card:hover::before {
  opacity: 1;
}

.hero-info-card h3 {
  color: var(--gold-200);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.hero-info-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
}

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

.hero-info-card svg:not(.bg-watermark-icon) {
  width: 40px;
  height: 40px;
  color: var(--gold-300);
  margin-bottom: 1rem;
  background: rgba(160, 90, 220, 0.1);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid rgba(160, 90, 220, 0.2);
  transition: all 0.3s ease;
}

.hero-info-card:hover svg:not(.bg-watermark-icon) {
  background: rgba(160, 90, 220, 0.25);
  transform: scale(1.15) rotate(5deg);
  border-color: var(--gold-200);
  box-shadow: 0 0 15px rgba(160, 90, 220, 0.3);
}

.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--gold-200);
}

.hero-benefit-item svg {
  color: var(--gold-300);
  width: 20px;
  height: 20px;
}

.urgency-text {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.urgency-text svg {
  color: var(--gold-300);
  width: 14px;
  height: 14px;
}

/* ── ¿Qué incluye? — Layout 2 columnas ─────────────────── */
.incluye-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .incluye-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
}

.incluye-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.incluye-left .section-title {
  margin: 0;
}

.incluye-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.incluye-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(25, 12, 40, 0.7) 0%, rgba(10, 5, 20, 0.9) 100%);
  border: 1px solid rgba(160, 90, 220, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.incluye-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-200));
  opacity: 0;
  transition: opacity 0.3s;
}

.incluye-item:hover {
  border-color: rgba(160, 90, 220, 0.35);
  background: linear-gradient(135deg, rgba(35, 15, 55, 0.85) 0%, rgba(15, 8, 30, 0.95) 100%);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(160, 90, 220, 0.15);
}

.incluye-item:hover::before { opacity: 1; }

.incluye-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(160, 90, 220, 0.12);
  border: 1px solid rgba(160, 90, 220, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  transition: all 0.3s ease;
}

.incluye-icon svg {
  width: 18px;
  height: 18px;
}

.incluye-item:hover .incluye-icon {
  background: rgba(160, 90, 220, 0.25);
  border-color: var(--gold-200);
  transform: scale(1.1);
}

.incluye-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.incluye-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ── Transformación ─────────────────────── */
.transformation-section {
  padding: var(--section-pad);
  background: var(--bg-void);
  text-align: center;
}

.transformation-text {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-family: var(--font-serif);
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .transformation-text {
    text-align: justify;
  }
}

.transformation-highlight {
  font-size: 1.2rem;
  color: var(--gold-200);
  font-style: italic;
  font-family: var(--font-serif);
  display: block;
  margin-top: 2rem;
}

/* ── Grid de Resultados / Temario ─────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 4rem auto 0;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.result-card {
  background: linear-gradient(145deg, rgba(20, 10, 30, 0.9) 0%, rgba(10, 5, 20, 1) 100%);
  border: 1px solid rgba(160, 90, 220, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  transition: all var(--duration-med) var(--ease-luxury);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(160, 90, 220, 0.05);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
  opacity: 0.3;
  transition: opacity 0.3s;
}

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

.bg-watermark-icon {
  position: absolute;
  top: 50%;
  right: -60px;
  left: auto;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  color: var(--gold-200);
  opacity: 0.05;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.result-card:hover .bg-watermark-icon,
.hero-info-card:hover .bg-watermark-icon {
  opacity: 0.1;
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  filter: blur(2px);
  color: var(--gold-300);
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(160, 90, 220, 0.5);
  box-shadow: 0 20px 40px rgba(160, 90, 220, 0.2), inset 0 0 30px rgba(160, 90, 220, 0.1);
}

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

.result-icon {
  width: 56px;
  height: 56px;
  color: var(--gold-300);
  background: rgba(160, 90, 220, 0.1);
  border-radius: 50%;
  padding: 12px;
  border: 1px solid rgba(160, 90, 220, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.result-icon svg {
  filter: drop-shadow(0 0 5px rgba(220, 180, 100, 0.4));
  transition: all 0.3s ease;
}

.result-card:hover .result-icon {
  background: rgba(160, 90, 220, 0.2);
  transform: scale(1.1);
  border-color: var(--gold-200);
}

.result-card:hover .result-icon svg {
  filter: drop-shadow(0 0 8px rgba(220, 180, 100, 0.8));
}

.result-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  font-family: var(--font-sans);
}

/* ── Temario Específico ─────────────────────── */
.temario-section {
  background: linear-gradient(to bottom, var(--bg-void), var(--bg-deep));
  padding: var(--section-pad);
}

.temario-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .temario-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.temario-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(145deg, rgba(20, 10, 30, 0.6) 0%, rgba(10, 5, 20, 0.8) 100%);
  border: 1px solid rgba(160, 90, 220, 0.15);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
}

.temario-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold-200);
  opacity: 0;
  transition: opacity 0.3s;
}

.temario-watermark {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  color: var(--gold-300);
  opacity: 0.06;
  filter: blur(1.5px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.temario-item:hover .temario-watermark {
  opacity: 0.13;
  transform: translateY(-50%) scale(1.1) rotate(8deg);
}


.temario-item:hover {
  background: linear-gradient(145deg, rgba(30, 15, 45, 0.8) 0%, rgba(15, 8, 30, 0.95) 100%);
  color: var(--text-primary);
  border-color: rgba(160, 90, 220, 0.4);
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(160, 90, 220, 0.2);
}

.temario-item:hover::before {
  opacity: 1;
}

.temario-item-icon {
  color: var(--gold-300);
  background: rgba(160, 90, 220, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(160, 90, 220, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.temario-item:hover .temario-item-icon {
  transform: scale(1.15) rotate(15deg);
  background: rgba(160, 90, 220, 0.25);
  border-color: var(--gold-200);
}

.gatillo-mental {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-200);
}

/* ── Autoridad / Tania ─────────────────────── */
.authority-section {
  padding: var(--section-pad);
  background: var(--bg-dark);
}

.authority-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .authority-inner {
    flex-direction: row;
  }
}

.authority-img-wrap {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.authority-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.authority-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.authority-text {
  flex: 1;
}

.authority-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* ── Info y Cierre ─────────────────────── */
.info-section {
  padding: var(--section-pad);
  background: var(--bg-void);
  text-align: center;
}

.payment-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(160, 90, 220, 0.25);
  border-bottom-color: rgba(160, 90, 220, 0.1);
  border-right-color: rgba(160, 90, 220, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-size: 1.05rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(160, 90, 220, 0.15);
  border-color: rgba(160, 90, 220, 0.4);
}

.cierre-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, rgba(123, 45, 155, 0.1) 0%, var(--bg-void) 100%);
  text-align: center;
  border-top: var(--border-gold);
}

.cierre-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold-200);
  margin-bottom: 2rem;
}

.cierre-texto {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: justify;
}

.cierre-gatillos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin: 2rem 0;
  color: #fca5a5;
  font-size: 0.95rem;
}

.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-large {
  font-size: 1rem;
  padding: 1.25rem 3rem;
}

/* ── Galeria / Marquee (Resultados) ─────────────────────── */
.gallery-section {
  padding: 5rem 0;
  overflow: hidden;
  background: var(--bg-void);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(123, 45, 155, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-void), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-void), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 100s linear infinite;
  gap: 1.5rem;
  padding-left: 2rem;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); } /* Scrolls half of the duplicated content */
}

.marquee-track img {
  height: 200px;
  width: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: grayscale(30%) brightness(0.9);
  transition: all var(--duration-med) var(--ease-luxury);
  border: 1px solid rgba(160, 90, 220, 0.2);
  box-shadow: 0 0 45px rgba(160, 90, 220, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

@media (min-width: 768px) {
  .marquee-track img {
    height: 350px;
    width: 280px;
  }
}

.marquee-track img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05) translateY(-10px);
  border-color: var(--gold-200);
  box-shadow: 0 0 80px rgba(160, 90, 220, 0.45), 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 10;
  position: relative;
}

/* ── Tarjetas de Experiencia (3 columnas) ─────────────────────── */
.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .experience-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 1.25rem;
    gap: 1rem;
  }
}

.experience-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom-color: rgba(255,255,255,0.05);
  border-right-color: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(160, 90, 220, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(160, 90, 220, 0.3);
}

.experience-card:hover .bg-watermark-icon {
  opacity: 0.1;
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  filter: blur(2px);
  color: var(--gold-300);
}

.experience-card > *:not(.bg-watermark-icon) {
  position: relative;
  z-index: 1;
}

.experience-icon {
  width: 40px;
  height: 40px;
  background: rgba(160, 90, 220, 0.12);
  border: 1px solid rgba(160, 90, 220, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.experience-icon svg {
  width: 17px;
  height: 17px;
  color: var(--gold-300);
}

.experience-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.experience-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Frases / Píldoras de Destacados ─────────────────────── */
.highlight-pill {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 0.85rem 1.75rem;
  border-radius: 40px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: fit-content;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.5;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 600px) {
  .highlight-pill {
    padding: 1rem 1.5rem;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    gap: 0.5rem;
  }
}

.highlight-pill svg {
  color: var(--gold-300);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ── Tarjetas de Métodos de Pago ─────────────────────── */
.payment-card {
  background: linear-gradient(145deg, rgba(20, 10, 30, 0.8) 0%, rgba(10, 5, 20, 0.9) 100%);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(160, 90, 220, 0.2);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.payment-card:hover {
  border-color: rgba(160, 90, 220, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(160, 90, 220, 0.2);
}

/* ── Botones Premium (Override) y Animaciones ─────────────────────── */
@keyframes btn-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

@keyframes btn-pulse-shadow {
  0%, 100% { box-shadow: 0 10px 25px rgba(160, 90, 220, 0.3), 0 0 0 0 rgba(180, 110, 240, 0.3); }
  50% { box-shadow: 0 15px 35px rgba(160, 90, 220, 0.6), 0 0 0 15px rgba(180, 110, 240, 0); }
}

.btn.btn-gold {
  background: linear-gradient(135deg, rgba(160, 90, 220, 0.85) 0%, rgba(110, 50, 180, 1) 100%);
  color: #ffffff;
  border: 1px solid rgba(200, 150, 255, 0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  padding: 1.25rem 2.5rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: btn-breathe 1.8s infinite ease-in-out, btn-pulse-shadow 1.8s infinite ease-in-out;
}

.btn.btn-gold .btn-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-200);
  transition: all 0.3s ease;
}

.btn.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn.btn-gold:hover {
  animation: none;
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, rgba(180, 110, 240, 0.95) 0%, rgba(130, 60, 210, 1) 100%);
  box-shadow: 0 15px 35px rgba(160, 90, 220, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
  border-color: rgba(220, 180, 255, 0.6);
  color: #fff;
}

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

.btn.btn-gold:hover .btn-icon {
  color: #fff;
  transform: scale(1.2) rotate(15deg);
}

/* ── CTA Principal ─────────────────────── */
.cta-main {
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── Mobile Responsive Fixes ─────────────────────── */
@media (max-width: 640px) {
  /* Fix text overflow on narrow screens */
  .hero-course .hero-subtitle {
    text-align: left;
    padding: 0 1rem;
  }

  .cierre-texto {
    text-align: left;
  }

  .authority-desc {
    text-align: left;
  }

  /* Prevent any justified text from overflowing */
  [data-justify],
  .incluye-desc,
  .transformation-text p {
    text-align: left;
  }

  /* Fix body overflow */
  body {
    overflow-x: hidden;
  }

  /* Fix hero container on mobile */
  .hero-course {
    overflow: hidden;
  }

  /* Ensure containers don't overflow */
  .container {
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  /* Hero info cards: añadir margen y reducir padding en móvil */
  .hero-info-cards {
    padding: 0 1.25rem;
    gap: 1rem;
    max-width: 100%;
  }

  .hero-info-card {
    padding: 1.1rem 0.9rem;
  }

  .hero-info-card h3 {
    font-size: 0.92rem;
  }

  .hero-info-card p {
    font-size: 0.78rem;
  }

  .hero-info-card svg:not(.bg-watermark-icon) {
    width: 32px;
    height: 32px;
    padding: 8px;
    margin-bottom: 0.6rem;
  }

  /* Pildora/botón respirante: reducir tamaño en móvil */
  .btn.btn-gold {
    padding: 0.85rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* Botón CTA principal en móvil */
  .btn.btn-gold.cta-main {
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    white-space: nowrap;
    max-width: 80vw;
  }

  /* Result cards: más compactas y con margen en móvil */
  .results-grid {
    padding: 0 1.25rem;
    gap: 1rem;
    margin-top: 2rem;
  }

  .result-card {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .result-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .result-text {
    font-size: 1rem;
  }

  .bg-watermark-icon {
    width: 200px;
    height: 200px;
  }
}
