/* styles.css */

/* Aseguramos que el footer no tenga espacio extra */
footer a svg {
  vertical-align: middle;
}

/* Animación suave al hacer scroll */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-bg {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-empresarios-bg {
  background-image: url('images/hero-empresarios.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-metafisica-bg {
  background-image: url('images/metafisica-en-el-salvador.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-consultores-bg {
  background-image: url('images/hero-consultores.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.miembro-circulo {
  width: 80px;
  height: 80px;
  background-color: #bfdbfe; /* bg-indigo-200 */
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.miembro-inicial {
  font-size: 1.5rem; /* Ajusta según necesites */
  color: #4f46e5;    /* text-indigo-600 */
  font-weight: 600;
}
#cookie-settings-modal input[type="checkbox"] {
  @extend .rounded;
  @extend .border-gray-300;
}
#cookie-settings-modal label strong {
  color: #374151;
}