/* Títulos */
h2, h3 {
    text-align: center;
    color: #0c7a3e;
    background: #ffffff;
    width: 100%;
  }
  
  /* Tabla principal */
  table {
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .seccion {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
    text-align: center;
  }
  /* Encabezado de la tabla */
  table thead {
    background: linear-gradient(45deg, #0e944f, #34d058);
    color: white;
  }
  
  table th {
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  /* Celdas de datos */
  table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.9rem;
  }
  
  /* Filas alternas */
  table tr:nth-child(even) {
    background-color: #f8fafc;
  }
  
  /* Hover en las filas */
  table tr:hover {
    background-color: #e6f7e6;
    transition: background-color 0.3s ease;
  }
  .pdf-drive {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
  }
  
  .pdf-drive h2 {
    color: #0e944f;
    margin-bottom: 1rem;
  }
  
  .pdf-drive ul {
    list-style-type: none;
    padding: 0;
  }
  
  .pdf-drive li {
    margin: 0.5rem 0;
    font-size: 1rem;
    list-style: none;
  }
  
  .pdf-drive a {
    color: #0e944f;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .pdf-drive a:hover {
    color: #0c7a3e;
  }
  @media(max-width:1500px){
    
    .pdf-drive li {
      display: block; /* Asegura que los elementos sigan visibles en dispositivos pequeños */
    }
  }

/* Botones */
.btn-inscripcion {
  display: inline-block;
  padding: 12px 24px;
  background: #0e944f;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.btn-inscripcion:hover {
  background: #0b7a40;
}

/* Beneficios */
.beneficios {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.beneficios li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  padding: 8px 0;
}

.beneficios i {
  color: #FFD500;
  margin-right: 10px;
  font-size: 1.5rem;
}


/* Responsivo */
@media (max-width: 958px) {
  .seccion {
      padding: 1.5rem;
  }
  
  .beneficios li {
      font-size: 1rem;
  }

  .btn-inscripcion {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}