/* --- Slider: Texto centrado sin fondo --- */
.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carousel-caption h2 {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  font-size: 2rem;
  font-weight: 600;
  padding: 0 20px;
  font-family: 'Ethnocentric', sans-serif;
}

/* --- Títulos globales con Ethnocentric --- */
h1, h2, h3, h4, h5 {
  font-family: 'Ethnocentric', sans-serif;
}

/* --- Animaciones al hacer scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.appear {
  opacity: 1;
  transform: translateY(0);
}

/* --- Botón de WhatsApp flotante --- */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-button svg,
.whatsapp-button img {
  width: 60px;
  height: 60px;
}

/* --- Íconos grandes --- */
.icono {
  font-size: 2rem;
  margin-right: 10px;
}

/* --- Texto justificado --- */
.text-justify {
  text-align: justify;
}

/* --- Fuente principal para el cuerpo --- */
body {
  font-family: 'Poppins', sans-serif;
}

/* --- Miniaturas galería --- */
.thumbnail-control {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.thumbnail-control:hover,
.thumbnail-control.active {
  opacity: 1;
  border: 2px solid #333;
}

