/* --- Estilos Técnicos de Mantenimiento --- */

/* Animaciones de Entrada */
.reveal-up {
    animation: fadeInUp 1s ease-out forwards;
}

.reveal-scale {
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Tarjetas Técnicas */
.tech-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.4s ease;
    cursor: default;
}

.tech-card:hover {
    background: #000000;
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Scrollbar Industrial */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #282828;
    border-radius: 5px;
    border: 2px solid #000000;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}