.app-section {
    padding: 60px 20px;
  }
  
  .app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .app-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 5px; /* aggiunto per la spaziatura */
  }
  
  
  .app-box:hover {
    transform: scale(1.02);
  }
  
  .app-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    min-height: 390px;
    border-radius: 10px;
  }
  
  .app-box:hover img {
    transform: scale(1.05);
  }
  
  .app-overlay {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
    height: 40%;
    background: rgba(145, 143, 143, 0.55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    opacity: 1; /* sempre visibile */
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }

  .app-box {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 5px;
}

.app-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  min-height: 390px;
  border-radius: 10px;
}

.app-box:hover img {
  transform: scale(1.05);
}

.app-overlay {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 80%;
  height: 40%;
  background: rgba(145, 143, 143, 0.55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}




.section-subtitle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;  /* centra il contenuto */
  margin-top: 25px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}



  
  /* Responsive */
  @media (max-width: 768px) {
    .app-overlay {
      font-size: 1.1rem;
    }
  }
  
  