.header {
  font-family: "Montserrat", sans-serif !important;
}

#seccion-interes {
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px 20px;
  }
  
  #seccion-interes h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .contenedor-articulos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  
  .articulo {
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  .articulo:hover {
    transform: translateY(-10px);
  }
  
  .articulo .imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Opcional, para redondear las esquinas */
    transition: transform 0.3s ease;
  }
  
  .articulo .imagen img:hover {
    transform: scale(1.05); /* Efecto zoom */
  }
  
  .articulo h3 {
    font-size: 1.5rem;
    color: #f00909;
    margin: 15px 0;
  }
  
  .articulo p {
    font-size: 1rem;
    color: #666;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  
  .articulo .btn {
    display: inline-block;
    background-color: #d8342c;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .articulo .btn:hover {
    background-color: #9e9e9e;
  }
  