/* Footer general */
.footer-distributed {
  background: #d8ae74;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  text-align: left;
}

/* Columna izquierda */
.footer-left .title {
  font-size: 28px;
  font-weight: bold;
  color: #1a2e05;
  margin-bottom: 15px;
}

.footer-left .title span {
  color: #0b5b1d;
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00c2b2;
}

.footer-company-name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Columna central */
.footer-center h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.footer-center iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Columna derecha */
.footer-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.footer-right p {
  margin: 6px 0;
  color: #1a2e05;
  font-weight: bold;
}

.footer-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-icons a {
  width: 42px;
  height: 42px;
  background: #1a2e05;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
}

/* Hover colores */
.footer-icons a:nth-child(1):hover { background: #1877f2; } /* Facebook */
.footer-icons a:nth-child(2):hover { background: #1da1f2; } /* Twitter */
.footer-icons a:nth-child(3):hover { background: #0077b5; } /* LinkedIn */
.footer-icons a:nth-child(4):hover { background: #333; } /* GitHub */

/* 📱 Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .footer-right {
    margin-top: 20px;
  }

  .footer-icons {
    justify-content: center;
  }
}
