.evento-finalizado {
    padding: 60px 20px;
    background: #f9f9f9;
    animation: fadeInUp 1s ease forwards;
  }
  
  .evento-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .evento-imagen img {
    width: 100%;
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .evento-info {
    flex: 1;
  }
  
  .evento-info h2 {
    font-size: 2rem;
    color: #4b0082;
    margin-bottom: 1rem;
  }
  
  .evento-descripcion {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .evento-fechas {
    list-style: none;
    padding: 0;
  }
  
  .evento-fechas li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
  }
  /*negocios ganadores  */

  .curso-destacado {
    padding: 60px 20px;
    background: #fdfdfd;
    animation: slideInRight 0.8s ease-in-out;
  }
  
  .curso-contenido {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .curso-imagen img {
    width: 100%;
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .curso-detalles {
    flex: 1;
    padding: 10px;
  }
  
  .curso-detalles h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 1rem;
  }
  
  .curso-descripcion {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  .btn-inscribete {
    background-color: #4b0082;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  .btn-inscribete:hover {
    background-color: #6f00b8;
  }
  /*negocios galeria */

  .galeria-frases {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .galeria-frases h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4b0082;
  }

  .contenedor-galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .imagen {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .imagen:hover {
    transform: scale(1.05);
  }

  .imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }

  .modal-contenido {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoom 0.6s;
  }

  @keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
  }

  .cerrar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }