/*encabezado*/
.page-header {
    text-align: center;
    padding: 50px 0;
  }
  
  .page-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .page-header p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
  }
  

/*Cartas de noticias y eventos*/
.news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }
  
  .news-card {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
  }
  
  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .news-card h3 {
    font-size: 24px;
    margin: 10px;
  }
  
  .news-card p {
    font-size: 16px;
    color: #888;
    margin: 10px;
  }
  
  .news-btn {
    background-color: #00ccfe;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .news-btn:hover {
    background-color: #2e0541;
  }
  