/* Socios Pro - Estilos principales - MANTIENE DISEÑO ORIGINAL FLEXIBLE */
.socios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Estilos base para cada item - DISEÑO FLEXIBLE ORIGINAL */
.socio-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e0e0e0;
    text-decoration: none !important;
    height: 120px !important;
    min-height: 120px !important;
    overflow: hidden;
    box-sizing: border-box;
    flex: 0 0 auto;
    position: relative;
}

.socio-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    display: block;
}

/* Efectos Hover - ORIGINALES + NUEVOS */

/* Efecto Zoom (Original) */
.socios-efecto-zoom .socio-item:hover {
    transform: scale(1.05);
}

.socios-efecto-zoom .socio-item:hover img {
    transform: scale(1.1);
}

/* Efecto Opacidad (Original) */
.socios-efecto-opacity .socio-item {
    opacity: 0.8;
}

.socios-efecto-opacity .socio-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Efecto Escala de Grises (Original) */
.socios-efecto-grayscale .socio-item img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.socios-efecto-grayscale .socio-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Efecto Sombra (Original) */
.socios-efecto-shadow .socio-item {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.socios-efecto-shadow .socio-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* NUEVOS EFECTOS PRO */

/* Efecto Zoom 3D */
.socios-efecto-zoom-3d .socio-item:hover {
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Efecto Glow */
.socios-efecto-glow .socio-item:hover {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    border-color: #4a90e2;
}

/* Efecto Color Personalizado - CORREGIDO */
/* El logo se muestra con el color elegido por defecto */
/* Al hacer hover, muestra el color original del logo */
.socios-efecto-colorize .socio-item {
    transition: all 0.4s ease;
}

.socios-efecto-colorize .socio-item:hover {
    transform: scale(1.05);
}

/* Efectos combinados para mejor apariencia */
.socio-item:hover {
    border-color: #007cba;
}

/* Asegurar que todos los items tengan la misma altura */
.socios-container {
    align-items: stretch;
}

.socio-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forzar la altura en todos los casos */
.socio-item {
    height: 120px !important;
    min-height: 120px !important;
}

/* Responsive básico */
@media (max-width: 768px) {
    .socios-container {
        justify-content: center;
        gap: 12px;
    }
    
    .socio-item {
        padding: 8px 15px;
        height: 110px !important;
        min-height: 110px !important;
    }
    
    .socio-item img {
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .socios-container {
        gap: 10px;
    }
    
    .socio-item {
        padding: 6px 12px;
        height: 100px !important;
        min-height: 100px !important;
    }
    
    .socio-item img {
        max-height: 80px;
    }
}

/* Garantizar que el diseño sea flexible y se adapte */
.socios-container::after {
    content: "";
    flex: auto;
}

/* Widget Styles */
.widget_socios_pro {
    margin-bottom: 20px;
}

.widget_socios_pro .socios-container {
    margin: 10px 0 0 0;
}