 

/* Footer reutilizable estilos */
.footer-reutilizable {
  background: linear-gradient(90deg, #ff61a6 0%, #6a82fb 100%);
  color: #fff;
  padding: 3rem 0 1rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 8px #ff61a6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
}
.footer-section {
  min-width: 180px;
  flex: 1 1 220px;
}
.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #ffd200;
}
.footer-social-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px #ff61a6);
  transition: filter 0.2s, transform 0.2s;
}
.footer-social-icons a:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px #ffd200);
  transform: scale(1.15);
}
.footer-copy {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.85;
}
.footer-contacto {
  background: rgba(255,255,255,0.07);
  border-radius: 18px; 
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-contacto h2 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 1px 1px 8px #ff61a6;
  background-color: #11111100;
}
.footer-contacto .form-contacto {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contacto input,
.footer-contacto textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  background: #fff2;
  color: #fff;
  font-size: 1rem;
  resize: none;
  box-shadow: 0 1px 6px #ff61a633;
}
.footer-contacto input:focus,
.footer-contacto textarea:focus {
  outline: 2px solid #ffd200;
  background: #fff3;
}
.footer-contacto button[type="submit"] {
  background: linear-gradient(90deg, #ffd200 0%, #ff61a6 100%);
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px #ff61a655;
  transition: background 0.2s, color 0.2s;
}
.footer-contacto button[type="submit"]:hover {
  background: linear-gradient(90deg, #fff200 0%, #ff61a6 100%);
  color: #111;
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
    .redes {
    max-height: 140px !important;
  }
}
@media (max-width: 600px) {
  .footer-contacto {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
    .redes {
    max-height: 100px !important;
  }
  .form-contacto input {
    width: 87%;
  }
  .form-contacto textarea {
    width: 87%;
  }
}