/* Footer Praxis Styles */
.footer-praxis {
  background: #f39200;
  color: white;
  padding: 40px 0 0 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  margin-top: 50px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

/* Contenedor general del footer */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center; /* CENTRADO VERTICAL */
  justify-content: center; /* CENTRADO HORIZONTAL */
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

/* Logo */
.footer-logo {
  flex-shrink: 0;
}

.footer-logo .logo-footer {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Contenido principal */
.footer-content {
  display: flex;
  flex: 1;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0c4371;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.sede-info p,
.horario-info p {
  margin: 8px 0;
  color: #0c4371;
  font-size: 16px;
  line-height: 1.5;
}

.sede-info p strong,
.horario-info p strong {
  color: #0c4371;
  font-weight: bold;
  font-size: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enlaces sociales */
.social-linksfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-link1 {
  color: #0c4371;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.social-link1:hover {
  color: white;
  text-decoration: underline;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
  font-size: 32px;
}

/* Footer Bottom */
.footer-bottom {
  background: #f39200;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 18px;
  color: #0c4371;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-section {
    min-width: auto;
    max-width: 320px;
  }

  .footer-section h3 {
    font-size: 19px; /* más grande en móvil */
  }

  .sede-info p,
  .horario-info p {
    font-size: 17px; /* texto más grande */
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .footer-logo .logo-footer {
    width: 140px; /* más grande en celular */
    height: 140px;
  }
}

@media (max-width: 480px) {
  .footer-praxis {
    padding: 25px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-logo .logo-footer {
    width: 160px; /* aún más grande en móviles pequeños */
    height: 160px;
    margin: 0 auto;
  }

  .footer-section h3 {
    font-size: 20px;
  }

  .sede-info p,
  .horario-info p {
    font-size: 18px;
    line-height: 1.6;
  }

  .social-link1 {
    font-size: 18px;
  }
}
