    /* =========================================
           VARIABLES GLOBALES
           ========================================= */
    :root {
      --primary-curso: #7d0000;
      --primary-dark: #4a0000;
      --accent: #d97706;
      --bg-body: #f8fafc;
      --text-main: #0f172a;
      --text-soft: #475569;
      --radius-xl: 28px;
      --radius-lg: 20px;
    }


    /* 1. NAVEGACIÓN SUPERIOR */
    .navbar-hero {
      background-color: transparent;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 24px 40px;
      display: flex;
      justify-content: center;
      gap: 40px;
      z-index: 100;
    }

    .navbar-hero a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 1px;
      transition: color 0.3s;
    }

    .navbar-hero a:hover {
      color: #ffffff;
    }

    /* 2. CABECERA HERO CON OLA SVG */
    .hero-banner {
      background: linear-gradient(145deg, #e11d48 0%, #8f0000 100%);
      color: white;
      padding: 120px 20px 220px 20px;
      position: relative;
    }

    .hero-banner::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 120px;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z' fill='%23f8fafc'/%3E%3C/svg%3E") no-repeat bottom;
      background-size: cover;
      z-index: 1;
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
    }
    .hero-text-area {

    }

    .breadcrumb {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      padding: 8px 20px;
      border-radius: 99px;
      color: #fde047;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    .hero-subtitle {
      font-size: 2.2rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      max-width: 90%;
    }


    .floating-card {
      background: #ffffff;
      border-radius: var(--radius-xl);
      padding: 0;
      box-shadow: 0 25px 50px -12px rgba(125, 0, 0, 0.25);
      position: absolute;
      top: 0;
      right: 0;
      width: 550px;
      color: var(--text-main);
      z-index: 10;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .card-image-header {
      width: 100%;

      position: relative;
      overflow: hidden;
      
    }

   
    .card-image-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

  
    .card-image-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
      pointer-events: none;
    }

    .card-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: white;
      padding: 6px 16px;
      border-radius: 99px;
      font-weight: 600;
      font-size: 0.85rem;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .card-content {
      padding: 32px;
    }

    .price-tag {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary-curso);
      margin-bottom: 24px;
      display: flex;
      align-items: baseline;
      gap: 8px;
      line-height: 1;
    }

    .price-tag span {
      font-size: 1.1rem;
      color: #64748b;
      font-weight: 500;
    }

    .cta-btn-huge {
  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(90deg, #e11d48, #be123c);
  color: white;
  padding: 20px;
  border-radius: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  margin: 24px 0;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-btn-huge:hover {
  background: #9e0f33;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(125, 0, 0, 0.267);
}

.cta-btn-huge i {
  opacity: 0;
  max-width: 0; 
  transform: translateX(-15px); 
  overflow: hidden;
  transition: all 0.3s ease-out;
}


.cta-btn-huge:hover i {
  opacity: 1;
  max-width: 20px; 
  margin-left: 10px;
  transform: translateX(0);
}

    .quick-facts {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border-top: 1px solid #f1f5f9;
      padding-top: 24px;
    }

    .quick-facts p {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 1.6rem;
      color: #475569;
      font-weight: 500;
    }

    .quick-facts i {
      width: 32px;
      height: 32px;
      background: rgba(197, 138, 16, 0.1);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1.6rem;
    }

    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
      }

      .floating-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 40px;
      }

      .hero-banner {
        padding-bottom: 100px;
      }

      .hero-banner::after {
        display: none;
      }
    }

    .main-content {
      max-width: 80%;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      margin-top: -40px;
    }

    @media (max-width: 1024px) {
      .main-content {
        grid-template-columns: 1fr;
        margin-top: 40px;
      }
    }

    .content-left {
      position: relative;
      z-index: 5;
      padding-right: 20px;
    }

    .section-heading {

      margin-bottom: 24px;
      margin-top: 60px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .section-heading:first-child {
      margin-top: 0;
    }

    .section-heading i {
      color: var(--accent);
      background: #fffbeb;
      padding: 12px;
      border-radius: 12px;
      font-size: 2rem;
    }

    .text-body {
      font-size: 2.2rem;
      color: var(--text-soft);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    
    .dates-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 30px;
    }

    .ticket-card {
      display: flex;
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.02);
      transition: transform 0.3s;
    }

    .ticket-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px -10px rgba(125, 0, 0, 0.15);
    }

    .ticket-modality {
      background: var(--primary-curso);
      color: white;
      width: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1.2rem;
      text-align: center;
      padding: 20px;
    }

    .ticket-modality i {
      font-size: 2.2rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .ticket-details {
      padding: 30px;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }

    .ticket-details::before {
      content: '';
      position: absolute;
      left: -10px;
      top: 0;
      bottom: 0;
      width: 20px;
      background-image: radial-gradient(circle at 0px 50%, var(--bg-body) 8px, transparent 9px);
      background-size: 20px 24px;
      background-position: left;
    }

    .t-row strong {
      display: block;
      font-size: 1.8rem;
      color: var(--text-soft);
      text-transform: uppercase;
      margin-bottom: 6px;
      letter-spacing: 0.5px;
      color: #d97706;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .t-row span {
      color: var(--text-main);
      font-size: 1.8rem;
      color: #0f172a;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    @media (max-width: 600px) {
      .ticket-card {
        flex-direction: column;
      }

      .ticket-modality {
        width: 100%;
        padding: 15px;
        flex-direction: row;
      }

      .ticket-details::before {
        display: none;
      }

      .ticket-details {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
      }
    }

    /* 6. TEMARIO CON LÍNEA DE TIEMPO ANIMADA */
    .timeline-list {
      list-style: none;
      position: relative;
      padding-left: 30px;
      margin-top: 30px;
    }

    .timeline-list::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 7px;
      bottom: 10px;
      width: 2px;
      background: repeating-linear-gradient(to bottom, #cbd5e1 0, #cbd5e1 6px, transparent 6px, transparent 12px);
    }

    .timeline-list li {
      position: relative;
      margin-bottom: 24px;
      font-size: 1.1rem;
      color: var(--text-main);
      font-weight: 500;
      background: white;
      padding: 20px 24px;
      border-radius: 16px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
      border: 1px solid #f1f5f9;
      transition: transform 0.3s, border-color 0.3s;
      cursor: default;
    }

    .timeline-list li:hover {
      transform: translateX(10px);
      border-color: var(--accent);
    }

    .timeline-list li::before {
      content: '';
      position: absolute;
      left: -31px;
      top: 25px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px var(--bg-body);
      transition: transform 0.3s;
    }

    .timeline-list li:hover::before {
      transform: scale(1.3);
    }
