/* footer section caricata nel footer */
.container-footer {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  
  footer {
    background-color: var(--color-sfondo);
    color: var(--color-pannina);
    padding: 4rem 0 2rem;
    bottom: 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
    width: 80%;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-column {
      width: calc(33.333% - 2rem);
      margin-bottom: 0;
    }
  }
  
  .footer-title {
    color: var(--color-bianco);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  
  /* .footer-links {
    list-style: none;
  } */
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: var(--color-pannina);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--color-hover);
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-bianco);
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .social-icon:hover {
    background-color: var(--color-blu);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
  }