/* Estilos Generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  /* Sidebar */
  .sidebar {
    width: 100%;
    max-width: 350px;
    background-color: #f4f6f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .sidebar h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
  }
  
  .sidebar ul {
    list-style-type: none;
  }
  
  .sidebar ul li button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    border: none;
    margin: 5px 0;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .sidebar ul li button.active,
  .sidebar ul li button:hover {
    background-color: #2a1c73;
    color: #fff;
  }
  
  /* Sección de Video */
  .video-section {
    background-color:#f4f6f9;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .video-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }


  .video-sectionv2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .video-sectionv2 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  
  /* Contenido Principal */
  .content {
    flex: 1;
    padding: 0 20px;
  }
  
  .info-section {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
  }
  
  .info-section h2 {
    font-size: 1.5em;
    color: #2a1c73;
    margin-bottom: 10px;
  }
  
  .info-section h3 {
    font-size: 1.2em;
    margin-top: 20px;
  }
  
  .info-section h4 {
    font-size: 1.1em;
    margin-top: 15px;
    color: #2a1c73;
  }
  
  .info-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .info-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  
  .info-section ul li:before {
    content: "✓";
    color: green;
    font-weight: bold;
    margin-right: 10px;
  }

  .header-content
{
    display:flexbox;
    max-width: 100%;
    margin-top: 15vh;
}

.header {
    padding: 30px;
    background-color: #f1f1f1;
    text-align: center;
  }
  
  .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb li {
    display: inline;
    margin-right: 5px;
  }
  
  .breadcrumb a {
    color: #2a1c73;
    text-decoration: none;
  }
  
  .breadcrumb li::after {
    content: ">";
    margin-left: 5px;
  }
  
  .breadcrumb li:last-child::after {
    content: "";
  }
  
  /* Responsive */
  @media (max-width: 768px) {

    .header-content
  {
  display:flexbox;
  max-width: 100%;
  margin-top:10vh;
 }

    .container {
      flex-direction: column;
    }
  
    .sidebar {
      max-width: 100%;
    }
  
    .content {
      padding: 0;
    }
  }
  