footer {
  background: linear-gradient(to right, #0f456b, #175e8a, #3ea8c6);
  color: white;
  padding: 50px 20px 25px 20px;
  font-family: 'Arial', sans-serif;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Centra verticalmente */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente el contenido */
  align-items: center;     /* Centra horizontalmente el contenido */
  text-align: center;      /* Para que los textos estén centrados */
}

.footer-left h3, .footer-right h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #14b1d4;
}

.footer-right h3 {
  color: white !important;
}

.footer-left p {
  margin: 5px 0;
  font-size: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 15px;  /* Ajustado margen para mejor distribución */
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #14b1d4;
  transform: scale(1.2);
  text-shadow: 0 0 5px #14b1d4;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ddd;
}


/* Botón para abrir el modal */
.btn-contact {
  margin-top: 20px;
  background-color: #14b1d4;
  border: none;
  padding: 10px 15px;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
.btn-contact i {
  font-size: 1.2rem;
}
.btn-contact:hover {
  background-color: #175e8a;
}

/* Modal */
.modal-contact {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-contact-content {
  background-color: white;
  padding: 25px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: relative;
}
.close-contact {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.close-contact:hover {
  color: #14b1d4;
}
.modal-contact-content h2 {
  margin-bottom: 20px;
  color: #175e8a;
  text-align: center;
}
.modal-contact-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #175e8a;
}
.modal-contact-content input,
.modal-contact-content textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}
.btn-contact-submit {
  background-color: #175e8a;
  color: white;
  border: none;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-contact-submit:hover {
  background-color: #14b1d4;
}
