  .horario-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 36px;
  }

  .horario-tab-btn {
      background: #fff;
      border: 1.5px solid #d0d5dd;
      border-radius: 30px;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 500;
      color: #444;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 7px;
  }

  .horario-tab-btn.active,
  .horario-tab-btn:hover {
      background: #1a2e4a;
      color: #fff;
      border-color: #1a2e4a;
  }

  .horario-tab-btn .flag {
      font-size: 16px;
  }

  /* Cards */
  .nivel-card {
      background: #1a2e4a;
      border-radius: 16px;
      padding: 28px 28px 22px;
      margin-bottom: 22px;
      color: #fff;
  }

  .nivel-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
  }

  .nivel-card-header h3 {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
      color: #fff;
  }

  .nivel-card-header h3 span {
      color: #e8a838;
  }

  .badge-meses {
      background: rgba(232, 168, 56, 0.18);
      color: #e8a838;
      border: 1px solid rgba(232, 168, 56, 0.4);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
  }

  .badge-meses i {
      font-size: 13px;
  }

  /* Two-column grid for Presencial / Virtual */
  .modalidad-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  @media (max-width: 600px) {
      .modalidad-grid {
          grid-template-columns: 1fr;
      }
  }

  .modalidad-col-title {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.65);
  }

  .modalidad-col-title .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
  }

  .dot-presencial {
      background: #e8a838;
  }

  .dot-virtual {
      background: #5ec4ff;
  }

  /* Schedule slot rows */
  .horario-slot {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 11px 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .horario-slot:last-child {
      margin-bottom: 0;
  }

  .slot-info .dias {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
  }

  .slot-info .horas {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
  }

  .slot-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(232, 168, 56, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .slot-icon i {
      color: #e8a838;
      font-size: 13px;
  }

  /* CTA Section */
  .horario-cta {
      background: #1a2e4a;
      border-radius: 18px;
      padding: 40px 30px;
      text-align: center;
      margin-top: 10px;
  }

  .horario-cta h4 {
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .horario-cta p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
      margin-bottom: 24px;
  }

  .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-whatsapp-cta {
      background: #25d366;
      color: #fff !important;
      border: none;
      border-radius: 8px;
      padding: 12px 26px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: background 0.2s;
  }

  .btn-whatsapp-cta:hover {
      background: #1ebe5d;
  }

  .btn-matricula-cta {
      background: transparent;
      color: #fff !important;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      border-radius: 8px;
      padding: 12px 26px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
  }

  .btn-matricula-cta:hover {
      background: rgba(255, 255, 255, 0.1);
      text-decoration: none;
  }

  /* idioma tab panes */
  .idioma-pane {
      display: none;
  }

  .idioma-pane.active {
      display: block;
  }

  /* intro text */
  .horario-intro {
      text-align: center;
      margin-bottom: 30px;
  }

  .horario-intro h2 {
      font-size: 28px;
      font-weight: 700;
      color: #1a2e4a;
      margin-bottom: 8px;
  }

  .horario-intro p {
      color: #666;
      font-size: 15px;
  }