/* ============================================
   SEÇÃO PROCESSO - CARDS EM AZUL NEON
   ============================================ */

.process-section {
    background: #000000;
    color: var(--text-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid #00d4ff;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-15px);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    background: rgba(0, 212, 255, 0.08);
}

.process-card:hover::before {
    left: 100%;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0080ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 1.4rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Efeito de brilho ao hover */
.process-card:hover .process-icon {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        padding: 2rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }
}
