/* =====================================================
   PÁGINA: ZONA DE PRUEBAS
   Estilos para el laboratorio de prototipos
   ===================================================== */

.pruebas-page {
    background: #f8fafc; /* Color de fondo suave */
    min-height: 80vh;
}

.hero-pruebas {
    padding: 80px 0;
    text-align: center;
}

/* Etiqueta de tecnología superior */
.badge-tech {
    background: var(--primary-light, #e2e8f0);
    color: var(--primary, #2563eb);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.lead-text {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid de proyectos */
.pruebas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Tarjeta de prueba */
.prueba-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prueba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.prueba-card h3 {
    margin-bottom: 15px;
    color: #1e293b;
}

.btn-test {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s;
}

.btn-test:hover {
    gap: 12px; /* Efecto de flecha que se mueve */
}

.card-status {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .hero-pruebas {
        padding: 50px 20px;
    }
    .pruebas-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
}