/* ===== OTRAS MARCAS - GRID RESPONSIVE ===== */
.other-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 24px);
    max-width: 1280px;
    margin: 0 auto;
}

.other-brand-card {
    background: var(--blanco);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--sombra-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.other-brand-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra);
}

.other-brand-card .logo-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--gris-claro);
    border-radius: 12px;
    padding: 8px;
}

.other-brand-card .logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.other-brand-card:hover .logo-wrapper img {
    opacity: 1;
}

.other-brand-card h4 {
    font-size: 0.95rem;
    color: var(--azul);
    font-weight: 700;
    margin: 0 0 4px 0;
}

.other-brand-card .country {
    font-size: 0.75rem;
    color: var(--gris);
    margin: 0 0 12px 0;
}

.other-brand-card .cta-link {
    font-size: 0.8rem;
    color: var(--azul);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.other-brand-card .cta-link:hover {
    gap: 8px;
}

/* Responsive para Otras Marcas */
@media (max-width: 1024px) {
    .other-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .other-brands-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .other-brand-card {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px 16px;
    }
    
    .other-brand-card .logo-wrapper {
        width: 80px;
        height: 50px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .other-brand-card .content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .other-brand-card h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .other-brand-card .cta-link {
        margin-top: 8px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .other-brand-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .other-brand-card .content {
        align-items: center;
    }
    
    .other-brand-card .cta-link {
        align-self: center;
    }
}