/* CSS para personalizar la galería y los modales */
.img-fluid {
  cursor: pointer;
}

.modal-content img {
  max-width: 100%;
  height: auto;
}

.politicas-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

.politicas-section h2 {
  font-family: 'Lora', serif;
  color: #FF9E00;
  text-align: center;
  margin-bottom: 30px;
}

.politicas-section ul {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contenedor flotante */
.social-float {
  position: fixed;
  bottom: 20px;   /* distancia desde abajo */
  right: 20px;    /* distancia desde la derecha */
  display: flex;
  flex-direction: column; /* iconos en columna */
  gap: 10px;      /* espacio entre iconos */
  z-index: 9999;  /* siempre encima */
}

/* Estilo general de los botones */
.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s;
}

/* Colores de cada red */
.social-float a.facebook { background: #3b5998; }
.social-float a.instagram { background: #F4D60F; }
.social-float a.whatsapp { background: #25D366; }

/* Efecto hover */
.social-float a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
