.justify-text {
    text-align: justify;
}

.no-select {
    user-select: none; /* Evita la selección de texto */
    -webkit-user-select: none; /* Para navegadores WebKit (Chrome, Safari) */
    -moz-user-select: none; /* Para Firefox */
    -ms-user-select: none; /* Para Edge/IE */
}

.hero-content {
    background: linear-gradient(135deg, rgba(40, 49, 87, 0.92), rgba(40, 49, 87, 0.75));
    border-radius: 1rem;
    color: #ffffff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.hero-content h2,
.hero-content p,
.hero-content li,
.hero-content small {
    color: inherit;
}

.hero-content ul {
    padding-left: 1.2rem;
}

.hero-content strong {
    color: inherit;
}

.hero-content .text-secondary {
    color: rgba(255, 255, 255, 0.8) !important;
}

