/* Card Base */
.partner-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.partner-card:hover {
    border-color: #fdba74;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Efecto Grayscale a Color */
.partner-logo-container {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: #94a3b8; /* slate-400 */
    /* Si usaras imágenes reales: filter: grayscale(100%); opacity: 0.7; */
}

.partner-card:hover .partner-logo-container {
    color: #f97316; /* orange-500 */
    transform: scale(1.1);
    /* Si usaras imágenes reales: filter: grayscale(0%); opacity: 1; */
}

/* Tipografía */
.partner-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.partner-desc {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}

/* Badge de Categoría (Opcional visual enhancement) */
.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.cat-global { background-color: #3b82f6; }
.cat-local { background-color: #10b981; }
.cat-tech { background-color: #8b5cf6; }

/* Grid Tech específico */
.tech-card {
    background: white; /* slate-50 */
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}
.tech-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #3b82f6;
}