/* ============================================
   SECCIÓN SOCIAL PROOF - ALIADOS
   ============================================ */

.social-proof-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #DC143C, #0066CC, #FFD700);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header con narrativa */
.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.proof-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFC400);
    color: #0f2b4d;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.proof-title {
    font-size: 2.5rem;
    color: #0f2b4d;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.proof-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de logos */
.proof-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.proof-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.proof-logo-item:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.proof-logo-image {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proof-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.proof-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.proof-logo-name {
    font-size: 0.95rem;
    color: #0f2b4d;
    font-weight: 700;
    text-align: center;
}

.logo-category {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.proof-logo-item:hover .logo-category {
    color: #FFD700;
}

/* Stats de credibilidad */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #0f2b4d 0%, #1a3a5c 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 43, 77, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 50px 15px;
    }
    
    .proof-title {
        font-size: 1.8rem;
    }
    
    .proof-subtitle {
        font-size: 1rem;
    }
    
    .proof-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        padding: 25px;
    }
    
    .proof-logo-item {
        padding: 20px 10px;
    }
    
    .proof-logo-image {
        height: 60px;
    }
    
    .proof-logo-name {
        font-size: 0.85rem;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}