.aridos-section {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
  }
  
  .aridos-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .arido-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .arido-item:hover {
    transform: scale(1.05);
  }
  
  .arido-item h3 {
    font-size: 1.6em;
    color: #555;
    margin-bottom: 15px;
  }
  
  .arido-images {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .arido-images img {
    width: 30%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .arido-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  