.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

#word-carousel {
    position: relative;
    height: 150px;
    /* Altura fija */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.word {
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    font-size: 2.5rem;
    text-wrap: balance;
    pointer-events: none;
}

.word.active {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .word {
        font-size: 2rem;
        padding: 0 15px;
    }
}