/* Footer - Centralized Styles */
.footer {
  background: #1a1a1a !important;
  color: #f8f9fa !important;
  padding: 1.5rem 0 !important; /* Padding uniforme */
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-content:has(p:only-child) {
  display: block !important;
  text-align: center !important;
  margin-bottom: 0 !important;
}

.footer-content p:only-child {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  margin: 0 !important;
  opacity: 0.8 !important;
  color: #f8f9fa !important;
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-description {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-link-cookies {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link-cookies:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer-content {
    gap: 1rem;
  }
  .footer-section h4.footer-title {
    font-size: 1.1rem;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
