/* Otimização de renderização para a animação de vento */
.wind-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    /* Força o uso da GPU para não pesar no processador */
    will-change: transform;
    /* Substituímos transform na classe pela animação apenas */
    animation: windMove linear infinite;
}

@keyframes windMove {
    from {
        transform: translate3d(-30vmax, -15vmax, 0) rotate(20deg);
    }
    to {
        transform: translate3d(150vmax, 75vmax, 0) rotate(20deg);
    }
}

/* Otimização do FadeIn (LCP) */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.995); /* Menos agressivo que 0.99 */
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.animate-fadeIn {
    /* Reduzimos o tempo para o LCP ser medido mais rápido */
    animation: fadeIn 0.6s ease-out forwards;
}

.card-ui {
    background-color: rgba(18, 18, 18, 0.25); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform;
    overflow: hidden;
}

.card-ui:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 215, 0, 0.1);
}

html {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important; 
    -ms-overflow-style: none !important; 
}

html::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
}

.wind-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
