﻿.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 25px;
  }
  
  .youtube-wrapper {
    position: relative;
    width: 100%;
    /* padding-bottom: 56.25%; /* 16:9 aspect ratio */
    /* height: 0; */
    margin-top: 20px;
  }
  
  .youtube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
  }
  
  .play-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
  }
  
  .titulo-2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .subtitulo {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .descripcion {
    margin-bottom: 20px;
  }