/* Fuentes personalizadas */
.fuente-elegante {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #ccc;
}

.bg-dark-alt {
  background-color: #1a1a1a;
}

/* Estilos de imágenes */
.image.is-rounded {
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(240, 2, 2, 0.2);
  transition: transform 0.3s ease;
}

.image.is-rounded:hover {
  transform: translateY(-10px);
}

.shadow-img {
  box-shadow: 0 12px 24px rgba(240, 2, 2, 0.15);
}

/* Botones destacados */
.button.border-danger {
  border: 2px solid #f00202 !important;
}

.button:hover,
.button.is-hovered {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(240, 2, 2, 0.3);
  transition: all 0.3s ease;
}

/* Efecto sutil en hover de secciones */
.box-content {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(10px);
  border-left: 4px solid #f00202;
}

/* Asegurar altura correcta con navbar fija */
.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
}