/* FONDO INTERACTIVO CON PALABRAS DE OFICINA */

.office-words-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.office-word {
    position: absolute;
    color: rgba(108, 117, 125, 0.3) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    white-space: nowrap;
    animation: fall linear infinite;
    user-select: none;
    pointer-events: none;
    font-size: 1.2rem;
    text-shadow: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
}

@keyframes fall {
    from {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Asegurar que no afecte otros elementos */
.office-word:hover {
    color: rgba(108, 117, 125, 0.4) !important;
    background: none !important;
    transform: scale(1.05) !important;
}
