/* Estilos para la tarjeta dividida */
.split-card {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    overflow: hidden;
  }
  
  .split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .split-card-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Para evitar desbordamiento en móviles */
  }
  
  /* Borde entre las columnas */
  .split-card-column:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  /* Asegurar que el encabezado y contenido de cada columna ocupen todo el espacio */
  .split-card-column .card-header,
  .split-card-column .card-content {
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Ajustes para el contenedor de video */
  /* Estilos mejorados para la tarjeta de video */
.video-card {
    overflow: hidden;
  }
  
  .video-content {
    padding: 0 !important;
    overflow: hidden;
    background-color: #000;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    overflow: hidden;
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  /* Overlay para el video con efecto de hover */
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  
  .video-container:hover .video-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
  }
  
  .video-container:hover video {
    transform: scale(1.05);
  }
  
  /* Botón de reproducción animado */
  .play-button-wrapper {
    margin-bottom: 20px;
  }
  
  .play-button {
    width: 70px;
    height: 70px;
    background-color: rgba(150, 131, 236, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px rgba(150, 131, 236, 0.2);
    animation: pulse 2s infinite;
  }
  
  .play-button i {
    color: white;
    font-size: 28px;
    margin-left: 5px; /* Centrar visualmente el ícono de play */
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(150, 131, 236, 0.6);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(150, 131, 236, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(150, 131, 236, 0);
    }
  }
  
  .video-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: var(--color-primary);
  }
  
  /* Título del video */
  .video-title {
    position: absolute;
    bottom: 30px;
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .video-title h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }
  
  .video-title p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
  
  /* Script para hacer funcional el video al hacer clic en el overlay */
  .js-video-click {
    cursor: pointer;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .play-button {
      width: 60px;
      height: 60px;
    }
    
    .play-button i {
      font-size: 24px;
    }
    
    .video-title h3 {
      font-size: 1.1rem;
    }
    
    .video-title p {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .play-button {
      width: 50px;
      height: 50px;
    }
    
    .play-button i {
      font-size: 20px;
    }
    
    .video-title {
      bottom: 20px;
    }
  }